llvm-project/clang/test/CodeGen/2005-09-24-AsmUserPrefix.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
138 B
C
Raw Normal View History

// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
// RUN: not grep _foo2
void foo() __asm__("foo2");
void bar() {
foo();
}