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

References

tools/clang/lib/Lex/LiteralSupport.cpp
 1163   auto MaxVal = llvm::APInt::getMaxValue(StoreVal.getBitWidth());
 1164   if (Val.getBitWidth() > StoreVal.getBitWidth()) {
 1166     StoreVal = Val.trunc(StoreVal.getBitWidth());
 1166     StoreVal = Val.trunc(StoreVal.getBitWidth());
 1167   } else if (Val.getBitWidth() < StoreVal.getBitWidth()) {
 1169     StoreVal = Val.zext(StoreVal.getBitWidth());
 1169     StoreVal = Val.zext(StoreVal.getBitWidth());
 1171     StoreVal = Val;