Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / 2005-09-24-AsmUserPrefix.c
blobeb5b5048c816d3d0b63ac5cc2b43bd5c08dca4e5
1 // RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
2 // RUN: not grep _foo2
4 void foo(void) __asm__("foo2");
6 void bar(void) {
7 foo();