HomeSort by: relevance | last modified time | path
    Searched defs:NoFPExcept (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineInstr.h 108 NoFPExcept = 1 << 14, // Instruction does not raise
1026 /// exceptions are not disabled, as indicated by the NoFPExcept MI flag.
1029 !getFlag(MachineInstr::MIFlag::NoFPExcept);
SelectionDAGNodes.h 387 // negative "NoFPExcept" flag here (that defaults to true) makes the flag
389 bool NoFPExcept : 1;
397 AllowReassociation(false), NoFPExcept(false) {}
421 void setNoFPExcept(bool b) { NoFPExcept = b; }
434 bool hasNoFPExcept() const { return NoFPExcept; }
449 NoFPExcept &= Flags.NoFPExcept;

Completed in 17 milliseconds