Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple i386 -emit-llvm -O2 -o - %s | FileCheck %s
      2 
      3 // CHECK-LABEL: define i32 @f0()
      4 // CHECK:  ret i32 1
      5 // CHECK: }
      6 
      7 static _Bool f0_0(void *a0) { return (_Bool) a0; }
      8 int f0() { return f0_0((void*) 0x2); }
      9 
     10 _Bool f1(void) {
     11   return (_Bool) ({ void (*x)(); x = 0; });
     12 }
     13