You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
25
external/llvm/test/Other/llvm-nm-without-aliases.ll
vendored
Normal file
25
external/llvm/test/Other/llvm-nm-without-aliases.ll
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
; RUN: llvm-as < %s > %t
|
||||
; RUN: llvm-nm -without-aliases - < %t | FileCheck %s
|
||||
; RUN: llvm-nm - < %t | FileCheck --check-prefix=WITH %s
|
||||
|
||||
; CHECK-NOT: T a0bar
|
||||
; CHECK-NOT: T a0foo
|
||||
; CHECK: T bar
|
||||
; CHECK: T foo
|
||||
|
||||
; WITH: T a0bar
|
||||
; WITH: T a0foo
|
||||
; WITH: T bar
|
||||
; WITH: T foo
|
||||
|
||||
@a0foo = alias void (), void ()* @foo
|
||||
|
||||
define void @foo() {
|
||||
ret void
|
||||
}
|
||||
|
||||
@a0bar = alias void (), void ()* @bar
|
||||
|
||||
define void @bar() {
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user