diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-02-20 13:13:33 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-02-20 13:13:33 +0000 |
commit | e70897f3eac211dc97b7482726aac9eb37a75161 (patch) | |
tree | cca64a3736daf8bf91cb624bd3e9850dc1e0945b /llvm/test/CodeGen/Mips/blez_bgez.ll | |
parent | 7851189ffb2ae2e446ca029de0542ec584d9b14e (diff) | |
download | bcm5719-llvm-e70897f3eac211dc97b7482726aac9eb37a75161.tar.gz bcm5719-llvm-e70897f3eac211dc97b7482726aac9eb37a75161.zip |
[mips] Make mips64 the default CPU for the mips64 architecture
Summary:
This is consistent with the integrated assembler.
All mips64 codegen tests previously passed -mcpu. Removed -mcpu from
blez_bgez.ll and const-mult.ll to cover the default case.
Ideally, the two implementations of selectMipsCPU() will be merged but it's
proven difficult to find a home for the function that doesn't cause link errors.
For now, we'll hoist the common functionality into a function and mark it with
FIXME's.
Reviewers: jacksprat, matheusalmeida
Reviewed By: matheusalmeida
Differential Revision: http://llvm-reviews.chandlerc.com/D2830
llvm-svn: 201782
Diffstat (limited to 'llvm/test/CodeGen/Mips/blez_bgez.ll')
-rw-r--r-- | llvm/test/CodeGen/Mips/blez_bgez.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Mips/blez_bgez.ll b/llvm/test/CodeGen/Mips/blez_bgez.ll index f6a5e4f47a5..dcda047f8d0 100644 --- a/llvm/test/CodeGen/Mips/blez_bgez.ll +++ b/llvm/test/CodeGen/Mips/blez_bgez.ll @@ -1,5 +1,5 @@ ; RUN: llc -march=mipsel < %s | FileCheck %s -; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s +; RUN: llc -march=mips64el < %s | FileCheck %s ; CHECK-LABEL: test_blez: ; CHECK: blez ${{[0-9]+}}, $BB |