diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-10-15 14:34:23 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-10-15 14:34:23 +0000 |
commit | 8008de55515f7e1eba8992f87aa2db0eccfd78fe (patch) | |
tree | 43934649f610e4d6a0178f520fd1d235f3f9df6b /llvm/test/CodeGen/Mips/mul.ll | |
parent | 5dfcda73d538728812fda0ce5b0025f490fd3c6c (diff) | |
download | bcm5719-llvm-8008de55515f7e1eba8992f87aa2db0eccfd78fe.tar.gz bcm5719-llvm-8008de55515f7e1eba8992f87aa2db0eccfd78fe.zip |
[mips][mips16] MIPS16 is not a CPU/Architecture but is an ASE.
Summary:
The -mcpu=mips16 option caused the Integrated Assembler to crash because
it couldn't figure out the architecture revision number to write to the
.MIPS.abiflags section. This CPU definition has been removed because, like
microMIPS, MIPS16 is an ASE to a base architecture.
Reviewers: vkalintiris
Subscribers: rkotler, llvm-commits, dsanders
Differential Revision: http://reviews.llvm.org/D13656
llvm-svn: 250407
Diffstat (limited to 'llvm/test/CodeGen/Mips/mul.ll')
-rw-r--r-- | llvm/test/CodeGen/Mips/mul.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Mips/mul.ll b/llvm/test/CodeGen/Mips/mul.ll index 3231f9cac38..9e053fc2e7d 100644 --- a/llvm/test/CodeGen/Mips/mul.ll +++ b/llvm/test/CodeGen/Mips/mul.ll @@ -1,4 +1,4 @@ -; RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16 +; RUN: llc -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16 @iiii = global i32 5, align 4 @jjjj = global i32 -6, align 4 |