Adjust test case for lexical block pruning. Follow-on to r104842 and Radar 7424645.
[oota-llvm.git] / test / FrontendC / 2005-09-24-AsmUserPrefix.c
1 // RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | llc | \
2 // RUN:    not grep _foo2
3
4 void foo() __asm__("foo2");
5
6 void bar() {
7   foo();
8 }