[PATCH] D25991: [PPC] Peephole to remove extra fcmp that checks for NaN
Ehsan Amiri via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 26 18:22:00 PDT 2016
amehsan added inline comments.
================
Comment at: lib/Target/PowerPC/PPCInstrInfo.cpp:1631
bool isPPC64 = Subtarget.isPPC64();
- bool is32BitSignedCompare = OpC == PPC::CMPWI || OpC == PPC::CMPW;
+ bool is32BitSignedCompare = OpC == PPC::CMPWI || OpC == PPC::CMPW;
bool is32BitUnsignedCompare = OpC == PPC::CMPLWI || OpC == PPC::CMPLW;
----------------
hfinkel wrote:
> No need for this white-space change.
OK. Will undo it.
https://reviews.llvm.org/D25991
More information about the llvm-commits
mailing list