[mips] Fix CPU used in the test case to suppress warning. NFC
authorSimon Atanasyan <simon@atanasyan.com>
Wed, 13 Mar 2019 11:04:28 +0000 (11:04 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Wed, 13 Mar 2019 11:04:28 +0000 (11:04 +0000)
The MSA ASE used in in the test case requires MIPS32 revision 5 or
greater while the test uses MIPS32 revision 1.

llvm-svn: 356038

llvm/test/CodeGen/Mips/no-odd-spreg-msa.ll

index 603a99e..220aea2 100644 (file)
@@ -1,7 +1,7 @@
-; RUN: llc -march=mipsel -mcpu=mips32 -mattr=+fp64,+msa,-nooddspreg \
+; RUN: llc -march=mipsel -mcpu=mips32r5 -mattr=+fp64,+msa,-nooddspreg \
 ; RUN:   -no-integrated-as -relocation-model=pic < %s | \
 ; RUN:   FileCheck %s -check-prefixes=ALL,ODDSPREG
-; RUN: llc -march=mipsel -mcpu=mips32 -mattr=+fp64,+msa,+nooddspreg \
+; RUN: llc -march=mipsel -mcpu=mips32r5 -mattr=+fp64,+msa,+nooddspreg \
 ; RUN:   -no-integrated-as -relocation-model=pic < %s | \
 ; RUN:   FileCheck %s -check-prefixes=ALL,NOODDSPREG