forked from OSchip/llvm-project
parent
3fcc790cd8
commit
e01d966ce2
|
@ -1,4 +0,0 @@
|
|||
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "ret i32 1"
|
||||
// PR3150
|
||||
|
||||
int a() {return 1||1;}
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue