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

Declarations

include/llvm/IR/Constants.h
  939   static Constant *getFMul(Constant *C1, Constant *C2);

References

include/llvm/Analysis/TargetFolder.h
   67     return Fold(ConstantExpr::getFMul(LHS, RHS));
include/llvm/IR/ConstantFolder.h
   59     return ConstantExpr::getFMul(LHS, RHS);
lib/IR/Core.cpp
 1550   return wrap(ConstantExpr::getFMul(unwrap<Constant>(LHSConstant),
lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
  441         Constant *CC1 = ConstantExpr::getFMul(C, C1);
  463         Constant *CC1 = ConstantExpr::getFMul(C, C1);
  469         Constant *CC1 = ConstantExpr::getFMul(C, C1);
 1190     NewC = ConstantExpr::getFMul(C, C2);
unittests/IR/ConstantsTest.cpp
  243   CHECK(ConstantExpr::getFMul(P1, P1), "fmul float " P1STR ", " P1STR);