13 lines · c
1// RUN: %clang_cc1 -triple i386 -emit-llvm -O2 -o - %s | FileCheck %s2 3// CHECK-LABEL: define{{.*}} i32 @f0()4// CHECK: ret i32 15// CHECK: }6 7static _Bool f0_0(void *a0) { return (_Bool) a0; }8int f0(void) { return f0_0((void*) 0x2); }9 10_Bool f1(void) {11 return (_Bool) ({ void (*x)(void); x = 0; });12}13