mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
27b1252c13
This changes the tests that were targeting ARM EABI to explicitly specify the environment rather than relying on the default. This breaks with the new Windows on ARM support when running the tests on Windows where the default environment is no longer EABI. Take the opportunity to avoid a pointless redirect (helps when trying to debug with providing a command line invocation which can be copy and pasted) and removing a few greps in favour of FileCheck. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205541 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
768 B
LLVM
31 lines
768 B
LLVM
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
|
|
|
|
%struct.A = type { i8, i8, i8, i8, i16, i8, i8, %struct.B** }
|
|
%struct.B = type { float, float, i32, i32, i32, [0 x i8] }
|
|
|
|
define i8 @f1(%struct.A* %d) {
|
|
%tmp2 = getelementptr %struct.A* %d, i32 0, i32 4
|
|
%tmp23 = bitcast i16* %tmp2 to i32*
|
|
%tmp4 = load i32* %tmp23
|
|
%tmp512 = lshr i32 %tmp4, 24
|
|
%tmp56 = trunc i32 %tmp512 to i8
|
|
ret i8 %tmp56
|
|
}
|
|
|
|
define i32 @f2(%struct.A* %d) {
|
|
%tmp2 = getelementptr %struct.A* %d, i32 0, i32 4
|
|
%tmp23 = bitcast i16* %tmp2 to i32*
|
|
%tmp4 = load i32* %tmp23
|
|
%tmp512 = lshr i32 %tmp4, 24
|
|
%tmp56 = trunc i32 %tmp512 to i8
|
|
%tmp57 = sext i8 %tmp56 to i32
|
|
ret i32 %tmp57
|
|
}
|
|
|
|
; CHECK: ldrb{{.*}}7
|
|
; CHECK-NOT: ldrb{{.*}}7
|
|
|
|
; CHECK: ldrsb{{.*}}7
|
|
; CHECK-NOT: ldrsb{{.*}}7
|
|
|