New testcase for PR1744
[oota-llvm.git] / test / CFrontend / 2007-06-18-SextAttrAggregate.c
index 2ba61fff76f7c049c5857e9f25f11ad09411d7f1..2fcd72607a2a6c96e7d376949271f767fcace11d 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -o - -S -emit-llvm -O3 | grep {i8 sext}
+// RUN: %llvmgcc %s -o - -S -emit-llvm -O3 | grep {i8 signext}
 // PR1513
 
 struct s{
@@ -6,6 +6,6 @@ long a;
 long b;
 };
 
-void f(struct s a, char *b, char C) {
+void f(struct s a, char *b, signed char C) {
 
 }