summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/attr-noinline.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/attr-noinline.c')
-rw-r--r--test/CodeGen/attr-noinline.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/attr-noinline.c b/test/CodeGen/attr-noinline.c
new file mode 100644
index 0000000..199c291
--- /dev/null
+++ b/test/CodeGen/attr-noinline.c
@@ -0,0 +1,9 @@
+// RUN: clang-cc -g -emit-llvm -o %t %s &&
+// RUN: grep 'noinline' %t
+
+void t1() __attribute__((noinline));
+
+void t1()
+{
+}
+
OpenPOWER on IntegriCloud