summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2007-06-18-SextAttrAggregate.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2007-06-18-SextAttrAggregate.c')
-rw-r--r--clang/test/CodeGen/2007-06-18-SextAttrAggregate.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2007-06-18-SextAttrAggregate.c b/clang/test/CodeGen/2007-06-18-SextAttrAggregate.c
new file mode 100644
index 0000000..27ae6a9
--- /dev/null
+++ b/clang/test/CodeGen/2007-06-18-SextAttrAggregate.c
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s
+// PR1513
+
+struct s{
+long a;
+long b;
+};
+
+void f(struct s a, char *b, signed char C) {
+ // CHECK: i8 signext
+
+}