mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 09:56:47 -05:00
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
12 lines
286 B
C
12 lines
286 B
C
// RUN: %clang_cc1 -triple i386 -emit-llvm -O2 -o - %s | FileCheck %s
|
|
|
|
// CHECK: define i32 @f0()
|
|
// CHECK: ret i32 1
|
|
// CHECK: }
|
|
|
|
static _Bool f0_0(void *a0) { return (_Bool) a0; }
|
|
int f0() { return f0_0((void*) 0x2); }
|
|
|
|
_Bool f1(void) {
|
|
return (_Bool) ({ void (*x)(); x = 0; });
|
|
}
|