search for: ca6b614

Displaying 2 results from an estimated 2 matches for "ca6b614".

2014 Sep 19
2
[LLVMdev] More careful treatment of floating point exceptions
Hi Sanjay, Thanks, I saw this flag and it's definitely should be considered, but it appeared to me to be static characteristic of target platform. I'm not sure how appropriate it would be to change its value from a front-end. It says "Has", while optional flag would rather say "Uses" meaning that implementation cares about floating point exceptions. Regards, Sergey
2014 Sep 25
2
[LLVMdev] More careful treatment of floating point exceptions
...ib/Target/ARM/ARMISelLowering.cpp | 12 ++++++++++++ test/CodeGen/ARM/fpcmp-f64-neon-opt.ll | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 test/CodeGen/ARM/fpcmp-f64-neon-opt.ll diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index ca6b614..48e038f 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -3240,6 +3240,18 @@ static bool isFloatingPointZero(SDValue Op) { if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal())) return CFP->getValueAPF().isPos...