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
30 lines
668 B
ArmAsm
30 lines
668 B
ArmAsm
@ RUN: llvm-mc < %s -triple armv7-unknown-unknown -filetype=obj | llvm-objdump -d - | FileCheck %s
|
|
|
|
@ Test that makes sure both label and immediate expression
|
|
@ are evaluated to the same values.
|
|
|
|
AES_Te:
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
.word 1,2,3,4,5,6
|
|
@ CHECK: <AES_encrypt>:
|
|
AES_encrypt:
|
|
@ CHECK: sub r10, r3, #264
|
|
sub r10,r3,#(AES_encrypt-AES_Te)
|
|
@ CHECK: sub r10, r3, #264
|
|
sub r10,r3,#(6*11*4)
|
|
Data:
|
|
@ CHECK: 08 01 00 00
|
|
.word (AES_encrypt-AES_Te)
|
|
@ CHECK: 08 01 00 00
|
|
.word (6*11*4)
|
|
|