mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +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
21 lines
629 B
LLVM
21 lines
629 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc -mtriple=mips -mcpu=mips32r2 -mattr=+micromips \
|
|
; RUN: -filetype=obj -o - %s | llvm-objdump -d - \
|
|
; RUN: | FileCheck --check-prefix=MM2 %s
|
|
; RUN: llc -mtriple=mips -mcpu=mips32r6 -mattr=+micromips -verify-machineinstrs \
|
|
; RUN: -filetype=obj -o - %s | llvm-objdump -d - \
|
|
; RUN: | FileCheck --check-prefix=MM6 %s
|
|
|
|
define void @fun(i32 %val) {
|
|
; MM2-LABEL: <fun>:
|
|
; MM2: cb e5 sw $ra, 20($sp)
|
|
|
|
; MM6-LABEL: <fun>:
|
|
; MM6: fb fd 00 14 sw $ra, 20($sp)
|
|
entry:
|
|
call i32* @fun1()
|
|
ret void
|
|
}
|
|
|
|
declare i32* @fun1()
|