
The new behavior matches GNU objdump. A pair of angle brackets makes tests slightly easier. `.foo:` is not unique and thus cannot be used in a `CHECK-LABEL:` directive. Without `-LABEL`, the CHECK line can match the `Disassembly of section` line and causes the next `CHECK-NEXT:` to fail. ``` Disassembly of section .foo: 0000000000001634 .foo: ``` Bdragon: <> has metalinguistic connotation. it just "feels right" Reviewed By: rupprecht Differential Revision: https://reviews.llvm.org/D75713
22 lines
518 B
LLVM
22 lines
518 B
LLVM
; Test the various output formats of the llvm-lto utility
|
|
;
|
|
; RUN: llvm-as < %s > %t1
|
|
;
|
|
; RUN: llvm-lto -exported-symbol=main -save-merged-module -filetype=asm -o %t2 %t1
|
|
; RUN: llvm-dis -o - %t2.merged.bc | FileCheck %s
|
|
; CHECK: @main()
|
|
|
|
; RUN: FileCheck --check-prefix=ASM %s < %t2
|
|
; RUN: llvm-lto -exported-symbol=main -filetype=obj -o %t2 %t1
|
|
; RUN: llvm-objdump -d %t2 | FileCheck --check-prefix=ASM %s
|
|
; ASM: main{{>?}}:
|
|
;
|
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define i32 @main() {
|
|
entry:
|
|
ret i32 23
|
|
}
|
|
|