Skip to content

Commit

Permalink
Make one statement easier to understand from post commmit feedback fr…
Browse files Browse the repository at this point in the history
…om a

review of the previous patch that introduced this week.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201723 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Reed Kotler committed Feb 19, 2014
1 parent 3bd3f42 commit fccbee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/Mips/Mips16ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ getOpndList(SmallVectorImpl<SDValue> &Ops,
// So for now we always save S2. The optimization will be done
// in a follow-on patch.
//
if (Signature->RetSig != Mips16HardFloatInfo::NoFPRet || 1)
if (1 || (Signature->RetSig != Mips16HardFloatInfo::NoFPRet))
FuncInfo->setSaveS2();
}
// one more look at list of intrinsics
Expand Down

0 comments on commit fccbee8

Please sign in to comment.