diff options
Diffstat (limited to 'test/CodeGen/Mips/Fast-ISel/overflt.ll')
-rw-r--r-- | test/CodeGen/Mips/Fast-ISel/overflt.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CodeGen/Mips/Fast-ISel/overflt.ll b/test/CodeGen/Mips/Fast-ISel/overflt.ll index 94abd2d..57f991e 100644 --- a/test/CodeGen/Mips/Fast-ISel/overflt.ll +++ b/test/CodeGen/Mips/Fast-ISel/overflt.ll @@ -1,10 +1,10 @@ -; RUN: llc -march=mipsel -relocation-model=pic -O0 -mips-fast-isel -fast-isel-abort -mcpu=mips32r2 \ +; RUN: llc -march=mipsel -relocation-model=pic -O0 -mips-fast-isel -fast-isel-abort=1 -mcpu=mips32r2 \ ; RUN: < %s | FileCheck %s -; RUN: llc -march=mipsel -relocation-model=pic -O0 -mips-fast-isel -fast-isel-abort -mcpu=mips32 \ +; RUN: llc -march=mipsel -relocation-model=pic -O0 -mips-fast-isel -fast-isel-abort=1 -mcpu=mips32 \ ; RUN: < %s | FileCheck %s @x = common global [128000 x float] zeroinitializer, align 4 -@y = global float* getelementptr inbounds ([128000 x float]* @x, i32 0, i32 0), align 4 +@y = global float* getelementptr inbounds ([128000 x float], [128000 x float]* @x, i32 0, i32 0), align 4 @result = common global float 0.000000e+00, align 4 @.str = private unnamed_addr constant [5 x i8] c"%f \0A\00", align 1 @@ -12,8 +12,8 @@ define void @foo() { entry: ; CHECK-LABEL: .ent foo - %0 = load float** @y, align 4 - %arrayidx = getelementptr inbounds float* %0, i32 64000 + %0 = load float*, float** @y, align 4 + %arrayidx = getelementptr inbounds float, float* %0, i32 64000 store float 5.500000e+00, float* %arrayidx, align 4 ; CHECK: lui $[[REG_FPCONST_INT:[0-9]+]], 16560 ; CHECK: mtc1 $[[REG_FPCONST_INT]], $f[[REG_FPCONST:[0-9]+]] @@ -31,9 +31,9 @@ entry: define void @goo() { entry: ; CHECK-LABEL: .ent goo - %0 = load float** @y, align 4 - %arrayidx = getelementptr inbounds float* %0, i32 64000 - %1 = load float* %arrayidx, align 4 + %0 = load float*, float** @y, align 4 + %arrayidx = getelementptr inbounds float, float* %0, i32 64000 + %1 = load float, float* %arrayidx, align 4 store float %1, float* @result, align 4 ; CHECK-DAG: lw $[[REG_RESULT:[0-9]+]], %got(result)(${{[0-9]+}}) ; CHECK-DAG: lw $[[REG_Y_GOT:[0-9]+]], %got(y)(${{[0-9]+}}) |