diff options
| author | Matheus Almeida <matheus.almeida@imgtec.com> | 2014-06-05 12:07:14 +0000 |
|---|---|---|
| committer | Matheus Almeida <matheus.almeida@imgtec.com> | 2014-06-05 12:07:14 +0000 |
| commit | 39796a2ec535af50736c287e6a7f5b20b124de79 (patch) | |
| tree | 59d6ae91c45a24ef9583906d1c42ce5294c2a35b | |
| parent | dad9206564ea5db93cb3b5e95b5989a6bf7de6c5 (diff) | |
| download | bcm5719-llvm-39796a2ec535af50736c287e6a7f5b20b124de79.tar.gz bcm5719-llvm-39796a2ec535af50736c287e6a7f5b20b124de79.zip | |
[mips] Fix triple.
Mips2 is a 32-bit architecture.
llvm-svn: 210254
| -rw-r--r-- | llvm/test/MC/Mips/mips2/invalid-mips32.s | 2 | ||||
| -rw-r--r-- | llvm/test/MC/Mips/mips2/invalid-mips32r2.s | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/MC/Mips/mips2/invalid-mips32.s b/llvm/test/MC/Mips/mips2/invalid-mips32.s index 2975c687669..bb6ebf57194 100644 --- a/llvm/test/MC/Mips/mips2/invalid-mips32.s +++ b/llvm/test/MC/Mips/mips2/invalid-mips32.s @@ -1,6 +1,6 @@ # Instructions that are invalid # -# RUN: not llvm-mc %s -triple=mips64-unknown-linux -show-encoding -mcpu=mips2 \ +# RUN: not llvm-mc %s -triple=mips-unknown-linux -show-encoding -mcpu=mips2 \ # RUN: 2>%t1 # RUN: FileCheck %s < %t1 diff --git a/llvm/test/MC/Mips/mips2/invalid-mips32r2.s b/llvm/test/MC/Mips/mips2/invalid-mips32r2.s index 37f2eed8d08..8d2bd6893c5 100644 --- a/llvm/test/MC/Mips/mips2/invalid-mips32r2.s +++ b/llvm/test/MC/Mips/mips2/invalid-mips32r2.s @@ -1,6 +1,6 @@ # Instructions that are invalid # -# RUN: not llvm-mc %s -triple=mips64-unknown-linux -show-encoding -mcpu=mips2 \ +# RUN: not llvm-mc %s -triple=mips-unknown-linux -show-encoding -mcpu=mips2 \ # RUN: 2>%t1 # RUN: FileCheck %s < %t1 |

