aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2007-11-27-SExtZExt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CFrontend/2007-11-27-SExtZExt.c b/test/CFrontend/2007-11-27-SExtZExt.c
new file mode 100644
index 0000000..2b6cd62
--- /dev/null
+++ b/test/CFrontend/2007-11-27-SExtZExt.c
@@ -0,0 +1,12 @@
+// RUN: %llvmgcc -S %s -emit-llvm -o - | grep "signext" | count 4
+
+signed char foo1() { return 1; }
+
+void foo2(signed short a) { }
+
+signed char foo3(void) { return 1; }
+
+void foo4(a) signed short a; { }
+
+
+