summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/kr-func-promote.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/kr-func-promote.c')
-rw-r--r--clang/test/CodeGen/kr-func-promote.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/kr-func-promote.c b/clang/test/CodeGen/kr-func-promote.c
new file mode 100644
index 0000000..fcdbac3
--- /dev/null
+++ b/clang/test/CodeGen/kr-func-promote.c
@@ -0,0 +1,5 @@
+// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | grep "i32 @a(i32)"
+
+int a();
+int a(x) short x; {return x;}
+