diff options
author | Akira Hatanaka <ahatanak@gmail.com> | 2011-09-09 01:13:27 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanak@gmail.com> | 2011-09-09 01:13:27 +0000 |
commit | ad5f0c9e736ac081089f98fafce974dfe0c584de (patch) | |
tree | a340ebe7aff67afdc294e3614e89ed6dd5151cf5 /test/CodeGen | |
parent | d40b0b0a0632d4b20631ac2196e0a07abb704343 (diff) | |
download | external_llvm-ad5f0c9e736ac081089f98fafce974dfe0c584de.zip external_llvm-ad5f0c9e736ac081089f98fafce974dfe0c584de.tar.gz external_llvm-ad5f0c9e736ac081089f98fafce974dfe0c584de.tar.bz2 |
Change default target architecture from Mips1 to Mips32r1 in preparation for
removing support for Mips1 and Mips2.
This change and the ones that follow have been discussed with and approved by
Bruno.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139344 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/Mips/2010-07-20-Select.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/Mips/fpcmp.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/Mips/mips1f64ldst.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/Mips/select.ll | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/Mips/2010-07-20-Select.ll b/test/CodeGen/Mips/2010-07-20-Select.ll index e5e2c54..31e56ff 100644 --- a/test/CodeGen/Mips/2010-07-20-Select.ll +++ b/test/CodeGen/Mips/2010-07-20-Select.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -march=mips -relocation-model=static | FileCheck %s -; RUN: llc < %s -march=mips -relocation-model=static -regalloc=basic | FileCheck %s +; RUN: llc < %s -march=mips -relocation-model=static -mcpu=mips1 | FileCheck %s +; RUN: llc < %s -march=mips -relocation-model=static -regalloc=basic -mcpu=mips1 | FileCheck %s ; Fix PR7473 define i32 @main() nounwind readnone { diff --git a/test/CodeGen/Mips/fpcmp.ll b/test/CodeGen/Mips/fpcmp.ll index c89ffe6..24de2ff 100644 --- a/test/CodeGen/Mips/fpcmp.ll +++ b/test/CodeGen/Mips/fpcmp.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -march=mipsel -mcpu=4ke | FileCheck %s -check-prefix=CHECK-MIPS32R2 -; RUN: llc < %s -march=mipsel | FileCheck %s -check-prefix=CHECK-MIPS1 +; RUN: llc < %s -march=mipsel -mcpu=mips1 | FileCheck %s -check-prefix=CHECK-MIPS1 @g1 = external global i32 diff --git a/test/CodeGen/Mips/mips1f64ldst.ll b/test/CodeGen/Mips/mips1f64ldst.ll index 1860755..28683be 100644 --- a/test/CodeGen/Mips/mips1f64ldst.ll +++ b/test/CodeGen/Mips/mips1f64ldst.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -march=mipsel | FileCheck %s -check-prefix=CHECK-EL -; RUN: llc < %s -march=mips | FileCheck %s -check-prefix=CHECK-EB +; RUN: llc < %s -march=mipsel -mcpu=mips1 | FileCheck %s -check-prefix=CHECK-EL +; RUN: llc < %s -march=mips -mcpu=mips1 | FileCheck %s -check-prefix=CHECK-EB @g1 = common global double 0.000000e+00, align 8 @g2 = common global double 0.000000e+00, align 8 diff --git a/test/CodeGen/Mips/select.ll b/test/CodeGen/Mips/select.ll index 3ea4c4b..623c2a3 100644 --- a/test/CodeGen/Mips/select.ll +++ b/test/CodeGen/Mips/select.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -march=mipsel -mcpu=4ke | FileCheck %s -check-prefix=CHECK-MIPS32R2 -; RUN: llc < %s -march=mipsel | FileCheck %s -check-prefix=CHECK-MIPS1 +; RUN: llc < %s -march=mipsel -mcpu=mips1 | FileCheck %s -check-prefix=CHECK-MIPS1 @d2 = external global double @d3 = external global double |