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

References

lib/Transforms/InstCombine/InstCombineCasts.cpp
  906           In = Builder.CreateLShr(In, ConstantInt::get(In->getType(), ShAmt),
  906           In = Builder.CreateLShr(In, ConstantInt::get(In->getType(), ShAmt),
  906           In = Builder.CreateLShr(In, ConstantInt::get(In->getType(), ShAmt),
  907                                   In->getName() + ".lobit");
  911           Constant *One = ConstantInt::get(In->getType(), 1);
  912           In = Builder.CreateXor(In, One);
  912           In = Builder.CreateXor(In, One);
  915         if (CI.getType() == In->getType())
  916           return replaceInstUsesWith(CI, In);
  918         Value *IntCast = Builder.CreateIntCast(In, CI.getType(), false);