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
[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git]
/
clang
/
test
/
Frontend
/
ast-main.c
blob
cdc74219f73acc54bc4ab819583066e4991c4f25
1
// RUN: env SDKROOT="/" %clang -emit-llvm -S -o %t1.ll -x c - < %s
2
// RUN: env SDKROOT="/" %clang -emit-ast -o %t.ast %s
3
// RUN: env SDKROOT="/" %clang -emit-llvm -S -o %t2.ll -x ast - < %t.ast
4
// RUN: diff %t1.ll %t2.ll
5
6
int
main
(
void
) {
7
return
0
;
8
}