diff options
author | Reed Kotler <rkotler@mips.com> | 2013-05-14 06:00:01 +0000 |
---|---|---|
committer | Reed Kotler <rkotler@mips.com> | 2013-05-14 06:00:01 +0000 |
commit | 0b95db8f2654cd19c029d024d931013bb7ecc14d (patch) | |
tree | 37630a62c854f949246fa231ba04ec4f8b7e6434 /lib | |
parent | 5427aa88d5930655ef9e958446489acc1bf9a160 (diff) | |
download | external_llvm-0b95db8f2654cd19c029d024d931013bb7ecc14d.zip external_llvm-0b95db8f2654cd19c029d024d931013bb7ecc14d.tar.gz external_llvm-0b95db8f2654cd19c029d024d931013bb7ecc14d.tar.bz2 |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181759 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Mips/Mips16HardFloat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/Mips16HardFloat.cpp b/lib/Target/Mips/Mips16HardFloat.cpp index e4ff4c4..cc7324f 100644 --- a/lib/Target/Mips/Mips16HardFloat.cpp +++ b/lib/Target/Mips/Mips16HardFloat.cpp @@ -241,7 +241,7 @@ static void swapFPIntParams static void assureFPCallStub(Function &F, Module *M, const MipsSubtarget &Subtarget){ // for now we only need them for static relocation - if (!Subtarget.getRelocationModel() == Reloc::PIC_) + if (Subtarget.getRelocationModel() == Reloc::PIC_) return; LLVMContext &Context = M->getContext(); bool LE = Subtarget.isLittle(); |