mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-15 07:59:50 +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
23 lines
682 B
LLVM
23 lines
682 B
LLVM
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
|
|
|
|
define void @test1(i32* %X, i32* %A, i32** %dest) {
|
|
%B = load i32* %A ; <i32> [#uses=1]
|
|
%Y = getelementptr i32* %X, i32 4 ; <i32*> [#uses=2]
|
|
store i32 %B, i32* %Y
|
|
store i32* %Y, i32** %dest
|
|
ret void
|
|
}
|
|
|
|
define i16* @test2(i16* %X, i32* %A) {
|
|
%B = load i32* %A ; <i32> [#uses=1]
|
|
%Y = getelementptr i16* %X, i32 4 ; <i16*> [#uses=2]
|
|
%tmp = trunc i32 %B to i16 ; <i16> [#uses=1]
|
|
store i16 %tmp, i16* %Y
|
|
ret i16* %Y
|
|
}
|
|
|
|
; CHECK: str{{.*}}!
|
|
; CHECK: str{{.*}}!
|
|
; CHECK-NOT: str{{.*}}!
|
|
|