merge two tests.

llvm-svn: 106971
This commit is contained in:
Chris Lattner 2010-06-27 01:08:03 +00:00
parent 3fcc790cd8
commit e01d966ce2
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +0,0 @@
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "ret i32 1"
// PR3150
int a() {return 1||1;}

View File

@ -131,3 +131,9 @@ int f11(long X) {
// CHECK-NEXT: load i32*
}
int f12() {
// PR3150
// CHECK: define i32 @f12
// CHECK: ret i32 1
return 1||1;
}