Re-enable some of the disabled tests. Use FileCheck instead of grep to check
authorAkira Hatanaka <ahatanak@gmail.com>
Wed, 21 Sep 2011 17:36:30 +0000 (17:36 +0000)
committerAkira Hatanaka <ahatanak@gmail.com>
Wed, 21 Sep 2011 17:36:30 +0000 (17:36 +0000)
output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140263 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Mips/2008-07-06-fadd64.ll
test/CodeGen/Mips/2008-07-07-FPExtend.ll
test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
test/CodeGen/Mips/2008-07-15-InternalConstant.ll
test/CodeGen/Mips/2008-08-07-FPRound.ll

index 8b118eda6362aa8681cd5063dd089b88170dfb37..ff8ed4d94403709987a077fa67119fea97890082 100644 (file)
@@ -1,12 +1,8 @@
-; DISABLED: llc < %s -march=mips | grep __adddf3
-; RUN: false
-; XFAIL: *
-
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
-target triple = "mipsallegrexel-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define double @dofloat(double %a, double %b) nounwind {
 entry:
+; CHECK: __adddf3
        fadd double %a, %b              ; <double>:0 [#uses=1]
        ret double %0
 }
index 624293f57d2d6aeeeae5a3ca6c2821e24635a436..29c8e8446e3d2f283a1321585a2db0aec79f38be 100644 (file)
@@ -1,12 +1,8 @@
-; DISABLED: llc < %s -march=mips | grep __extendsfdf2
-; RUN: false
-; XFAIL: *
-
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
-target triple = "mipsallegrexel-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define double @dofloat(float %a) nounwind {
 entry:
+; CHECK: __extendsfdf2
        fpext float %a to double                ; <double>:0 [#uses=1]
        ret double %0
 }
index c8247029dad080f875a40b77d10430c06ff3838c..9a6bbdfb22ff5be0bd7221005713f18f41e93c87 100644 (file)
@@ -1,34 +1,33 @@
-; DISABLED: llc < %s -march=mips -o %t
-; DISABLED: grep __floatsidf   %t | count 1
-; DISABLED: grep __floatunsidf %t | count 1
-; DISABLED: grep __fixdfsi %t | count 1
-; DISABLED: grep __fixunsdfsi %t  | count 1
-; RUN: false
-; XFAIL: *
-
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
-target triple = "mipsallegrexel-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define double @int2fp(i32 %a) nounwind {
 entry:
+; CHECK: int2fp
+; CHECK: __floatsidf
        sitofp i32 %a to double         ; <double>:0 [#uses=1]
        ret double %0
 }
 
 define double @uint2double(i32 %a) nounwind {
 entry:
+; CHECK: uint2double
+; CHECK: __floatunsidf
        uitofp i32 %a to double         ; <double>:0 [#uses=1]
        ret double %0
 }
 
 define i32 @double2int(double %a) nounwind {
 entry:
+; CHECK: double2int
+; CHECK: __fixdfsi
   fptosi double %a to i32   ; <i32>:0 [#uses=1]
   ret i32 %0
 }
 
 define i32 @double2uint(double %a) nounwind {
 entry:
+; CHECK: double2uint
+; CHECK: __fixunsdfsi
   fptoui double %a to i32   ; <i32>:0 [#uses=1]
   ret i32 %0
 }
index 4b830326051607f73f53c66a7473c3828a80132b..29a7b5c3761a17d4915ce8ef6c50901ce6b9fb26 100644 (file)
@@ -1,25 +1,23 @@
-; DISABLED: llc < %s -march=mips -o %t
-; DISABLED: grep {rodata.str1.4,"aMS",@progbits}  %t | count 1
-; DISABLED: grep {r.data,}  %t | count 1
-; DISABLED: grep {\%hi} %t | count 2
-; DISABLED: grep {\%lo} %t | count 2
-; DISABLED: not grep {gp_rel} %t
-; RUN: false
-+; XFAIL: *
+; RUN: llc -march=mips -relocation-model=static  < %s | FileCheck %s
 
-
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
-target triple = "mipsallegrexel-unknown-psp-elf"
 @.str = internal unnamed_addr constant [10 x i8] c"AAAAAAAAA\00"
-@i0 = internal unnamed_addr constant [5 x i32] [ i32 0, i32 1, i32 2, i32 3, i32 4 ] 
+@i0 = internal unnamed_addr constant [5 x i32] [ i32 0, i32 1, i32 2, i32 3, i32 4 ]
 
 define i8* @foo() nounwind {
 entry:
+; CHECK: foo
+; CHECK: %hi(.str)
+; CHECK: %lo(.str)
        ret i8* getelementptr ([10 x i8]* @.str, i32 0, i32 0)
 }
 
 define i32* @bar() nounwind  {
 entry:
+; CHECK: bar
+; CHECK: %hi(i0)
+; CHECK: %lo(i0)
   ret i32* getelementptr ([5 x i32]* @i0, i32 0, i32 0)
 }
 
+; CHECK: rodata.str1.4,"aMS",@progbits
+; CHECK: rodata,"a",@progbits
index e3fa01844ca37f35e4de57bff49351fe679f7cf5..4fa43b6833bde9543e832b05db53f08b27c119f1 100644 (file)
@@ -1,12 +1,8 @@
-; DISABLED: llc < %s -march=mips | grep __truncdfsf2 | count 1
-; RUN: false
-; XFAIL: *
-
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
-target triple = "mipsallegrexel-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define float @round2float(double %a) nounwind {
 entry:
+; CHECK: __truncdfsf2
        fptrunc double %a to float              ; <float>:0 [#uses=1]
        ret float %0
 }