repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git]
/
clang
/
test
/
Misc
/
interpreter.c
blob
42e1645b7c61bed444eaa41ba2ad942e4292d7f7
1
// RUN: clang-interpreter %s | FileCheck %s
2
// REQUIRES: native, examples
3
4
int
printf
(
const char
*, ...);
5
6
int
main
() {
7
// CHECK: {{Hello world!}}
8
printf
(
"Hello world!
\n
"
);
9
return
0
;
10
}