[llvm] r181759 - Fix typo.
Reed Kotler
rkotler at mips.com
Tue May 14 20:53:59 PDT 2013
On 05/14/2013 06:31 AM, Rafael EspĂndola wrote:
> can you test this?
>
This line can actually be removed but I wanted to verify that when I do
my next patch because.
The condition is already tested before this function is called.
I built a compiler using CXX=clang++ and with warnings as errors and it
build fine and passed makecheck.
$ /home/rkotler/llvm_trunk/configure --enable-werror
-prefix=/local/llvm_clang/install
CC='/home/rkotler/llvm_3_2/install/bin/clang'
CPP='/home/rkotler/llvm_3_2/install/bin/clang -E'
CXX='/home/rkotler/llvm_3_2/install/bin/clang++'
CXXCPP='/home/rkotler/llvm_3_2/install/bin/clang++ -E'
> On 14 May 2013 02:00, Reed Kotler <rkotler-8NJIiSa5LzA at public.gmane.org> wrote:
>> Author: rkotler
>> Date: Tue May 14 01:00:01 2013
>> New Revision: 181759
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=181759&view=rev
>> Log:
>> Fix typo.
>>
>>
>> Modified:
>> llvm/trunk/lib/Target/Mips/Mips16HardFloat.cpp
>>
>> Modified: llvm/trunk/lib/Target/Mips/Mips16HardFloat.cpp
>> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/Mips16HardFloat.cpp?rev=181759&r1=181758&r2=181759&view=diff
>> ==============================================================================
>> --- llvm/trunk/lib/Target/Mips/Mips16HardFloat.cpp (original)
>> +++ llvm/trunk/lib/Target/Mips/Mips16HardFloat.cpp Tue May 14 01:00:01 2013
>> @@ -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();
>>
>>
>> _______________________________________________
>> llvm-commits mailing list
>> llvm-commits-Tmj1lob9twqVc3sceRu5cw at public.gmane.org
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list