[llvm-exegesis][NFC] Improve parsing of the YAML files
[llvm-core.git] / test / Other / llvm-nm-without-aliases.ll
blob4df1a751a04fae4e1e7a7f1a33bab2acf86fcaba
1 ; RUN: llvm-as < %s > %t
2 ; RUN: llvm-nm -without-aliases - < %t | FileCheck %s
3 ; RUN: llvm-nm - < %t | FileCheck --check-prefix=WITH %s
5 ; CHECK-NOT: T a0bar
6 ; CHECK-NOT: T a0foo
7 ; CHECK: T bar
8 ; CHECK: T foo
10 ; WITH: T a0bar
11 ; WITH: T a0foo
12 ; WITH: T bar
13 ; WITH: T foo
15 @a0foo = alias void (), void ()* @foo
17 define void @foo() {
18   ret void
21 @a0bar = alias void (), void ()* @bar
23 define void @bar() {
24   ret void