mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
db43217a24
Currently we have a number of tests that fail with -verify-machineinstrs. To detect this cases earlier we add the option to the testcases with the exception of tests that will currently fail with this option. PR 27456 keeps track of this failures. No code review, as discussed with Hal Finkel. llvm-svn: 277624
34 lines
992 B
LLVM
34 lines
992 B
LLVM
; RUN: llc -verify-machineinstrs < %s | FileCheck %s
|
|
|
|
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
|
|
target triple = "powerpc64-unknown-linux-gnu"
|
|
|
|
define i8* @test(i8* %base, i8 %val) {
|
|
entry:
|
|
%arrayidx = getelementptr inbounds i8, i8* %base, i32 -1
|
|
store i8 %val, i8* %arrayidx, align 1
|
|
%arrayidx2 = getelementptr inbounds i8, i8* %base, i32 1
|
|
store i8 %val, i8* %arrayidx2, align 1
|
|
ret i8* %arrayidx
|
|
}
|
|
; CHECK: @test
|
|
; CHECK: %entry
|
|
; CHECK-NEXT: stbu 4, -1(3)
|
|
; CHECK-NEXT: stb 4, 2(3)
|
|
; CHECK-NEXT: blr
|
|
|
|
define i64* @test64(i64* %base, i64 %val) {
|
|
entry:
|
|
%arrayidx = getelementptr inbounds i64, i64* %base, i32 -1
|
|
store i64 %val, i64* %arrayidx, align 8
|
|
%arrayidx2 = getelementptr inbounds i64, i64* %base, i32 1
|
|
store i64 %val, i64* %arrayidx2, align 8
|
|
ret i64* %arrayidx
|
|
}
|
|
; CHECK: @test64
|
|
; CHECK: %entry
|
|
; CHECK-NEXT: stdu 4, -8(3)
|
|
; CHECK-NEXT: std 4, 16(3)
|
|
; CHECK-NEXT: blr
|
|
|