mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
25a0241f66
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
17 lines
528 B
LLVM
17 lines
528 B
LLVM
; RUN: llc -mtriple aarch64 %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple aarch64 -filetype=obj %s -o - | llvm-objdump --arch=aarch64 -d - | FileCheck %s --check-prefix=DUMP
|
|
|
|
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
|
|
|
|
define dso_local void @f(i64 %v) {
|
|
entry:
|
|
%dummy = tail call i64 @llvm.aarch64.space(i32 32684, i64 %v)
|
|
ret void
|
|
}
|
|
; CHECK: // SPACE
|
|
; CHECK-NEXT: ret
|
|
; DUMP-LABEL: <f>:
|
|
; DUMP-NEXT: ret
|
|
|
|
declare dso_local i64 @llvm.aarch64.space(i32, i64) local_unnamed_addr #0
|