repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
CodeGen
/
_Bool-conversion.c
blob
9e5e89450314163e21d9ea86620bdc32063edd3a
1
// RUN: %clang_cc1 -triple i386 -emit-llvm -O2 -o - %s | FileCheck %s
2
3
// CHECK: 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
}