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