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
/
builtin-attributes.c
blob
afde3fab84816fc2b2f64b4ed2e9527ba9d42970
1
// RUN: %clang_cc1 -triple arm-unknown-linux-gnueabi -emit-llvm -o - %s | FileCheck %s
2
3
// CHECK: declare i32 @printf(i8*, ...)
4
void
f0
() {
5
printf
(
"a
\n
"
);
6
}
7
8
// CHECK: call void @exit
9
// CHECK: unreachable
10
void
f1
() {
11
exit
(
1
);
12
}