reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Bitcode/Reader/BitcodeReader.cpp
 1074   if (!IsFP && !Ty->isIntOrIntVectorTy())
 1081     return IsFP ? Instruction::FAdd : Instruction::Add;
 1083     return IsFP ? Instruction::FSub : Instruction::Sub;
 1085     return IsFP ? Instruction::FMul : Instruction::Mul;
 1087     return IsFP ? -1 : Instruction::UDiv;
 1089     return IsFP ? Instruction::FDiv : Instruction::SDiv;
 1091     return IsFP ? -1 : Instruction::URem;
 1093     return IsFP ? Instruction::FRem : Instruction::SRem;
 1095     return IsFP ? -1 : Instruction::Shl;
 1097     return IsFP ? -1 : Instruction::LShr;
 1099     return IsFP ? -1 : Instruction::AShr;
 1101     return IsFP ? -1 : Instruction::And;
 1103     return IsFP ? -1 : Instruction::Or;
 1105     return IsFP ? -1 : Instruction::Xor;