mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +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
25 lines
772 B
LLVM
25 lines
772 B
LLVM
; RUN: llc -verify-machineinstrs -O2 -mtriple=powerpc-unknown-linux-gnu < %s | FileCheck %s
|
|
|
|
target datalayout = "E-m:e-p:32:32-i64:64-n32"
|
|
target triple = "powerpc-buildroot-linux-gnu"
|
|
|
|
@.str = private unnamed_addr constant [5 x i8] c"%Lf\0A\00", align 1
|
|
|
|
define i32 @main() #0 {
|
|
entry:
|
|
%call = tail call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i32 0, i32 0), ppc_fp128 0xM3FF00000000000000000000000000000)
|
|
ret i32 0
|
|
}
|
|
|
|
; First available register for long double argument is r4, so put
|
|
; Hi part in r4/r5, Lo part in r6/r7 (do not switch Hi/Lo parts)
|
|
; CHECK: lis 4, 16368
|
|
; CHECK-NOT: lis 6, 16368
|
|
; CHECK: li 5, 0
|
|
; CHECK: li 7, 0
|
|
|
|
declare i32 @printf(i8* nocapture readonly, ...)
|
|
|
|
attributes #0 = { "use-soft-float"="true" }
|
|
|