mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-11 07:15:26 +00:00
![Justin Bogner](/assets/img/avatar_default.png)
Dissasembly tests depends on target. The problem is that it disable all tests if all targets are not compiled. This moves things around in order to get target specific code in a target specific folder. Patch by Amaury Sechet. Thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240380 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
792 B
Plaintext
22 lines
792 B
Plaintext
; RUN: llvm-c-test --disassemble < %s | FileCheck %s
|
|
|
|
armv8-linux-gnu +crypto 02 00 81 e0 02 03 b0 f3
|
|
;CHECK: triple: armv8-linux-gnu, features: +crypto
|
|
;CHECK: 02 00 81 e0 add r0, r1, r2
|
|
;CHECK: 02 03 b0 f3 aese.8 q0, q1
|
|
|
|
armv8-linux-gnu -crypto 02 00 81 e0 02 03 b0 f3
|
|
;CHECK: triple: armv8-linux-gnu, features: -crypto
|
|
;CHECK: 02 00 81 e0 add r0, r1, r2
|
|
;CHECK: 02 ???
|
|
;CHECK: 03 ???
|
|
;CHECK: b0 ???
|
|
;CHECK: f3 ???
|
|
|
|
arm-linux-android NULL 44 26 1f e5 0c 10 4b e2 02 20 81 e0
|
|
;CHECK: triple: arm-linux-android, features: NULL
|
|
;CHECK: ldr r2, [pc, #-1604]
|
|
;CHECK: sub r1, r11, #12
|
|
;CHECK: 02 20 81 e0
|
|
;CHECK: add r2, r1, r2
|