Sign in
llvm
/
clang
/
dbc3b913b6334f75bcd8dd6331aaef0770334228
/
.
/
test
/
CodeGen
/
2005-09-24-AsmUserPrefix.c
blob: d0e5bd1c3a444d2091a8805e0b9d083606803828 [
file
]
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
// RUN: not grep _foo2
void
foo
()
__asm__
(
"foo2"
);
void
bar
()
{
foo
();
}