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

References

tools/clang/lib/CodeGen/CGBuiltin.cpp
 1408   if (Types.empty()) {
 1409     Types[Context.CharTy] = "%c";
 1410     Types[Context.BoolTy] = "%d";
 1411     Types[Context.SignedCharTy] = "%hhd";
 1412     Types[Context.UnsignedCharTy] = "%hhu";
 1413     Types[Context.IntTy] = "%d";
 1414     Types[Context.UnsignedIntTy] = "%u";
 1415     Types[Context.LongTy] = "%ld";
 1416     Types[Context.UnsignedLongTy] = "%lu";
 1417     Types[Context.LongLongTy] = "%lld";
 1418     Types[Context.UnsignedLongLongTy] = "%llu";
 1419     Types[Context.ShortTy] = "%hd";
 1420     Types[Context.UnsignedShortTy] = "%hu";
 1421     Types[Context.VoidPtrTy] = "%p";
 1422     Types[Context.FloatTy] = "%f";
 1423     Types[Context.DoubleTy] = "%f";
 1424     Types[Context.LongDoubleTy] = "%Lf";
 1425     Types[Context.getPointerType(Context.CharTy)] = "%s";
 1426     Types[Context.getPointerType(Context.getConstType(Context.CharTy))] = "%s";
 1460     llvm::Twine Format = Types.find(CanonicalType) == Types.end()
 1460     llvm::Twine Format = Types.find(CanonicalType) == Types.end()
 1461                              ? Types[Context.VoidPtrTy]
 1462                              : Types[CanonicalType];