Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
85e5156598b1bbad0ae41cf4d0d5b845dd655ffd
/
.
/
clang
/
test
/
CodeGen
/
2005-09-24-AsmUserPrefix.c
blob: 16283130beb0970d4c2d8b1f8bbe904f1d8d8ad1 [
file
] [
log
] [
blame
]
Eric Christopher
85e5156
2011-07-26 22:17:02 +0000
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -std-compile-opts | llc | \
2
// RUN: not grep _foo2
3
4
void
foo
()
__asm__
(
"foo2"
);
5
6
void
bar
()
{
7
foo
();
8
}