diff options
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp index 277d69d..1e58c3f 100644 --- a/clang/lib/CodeGen/TargetInfo.cpp +++ b/clang/lib/CodeGen/TargetInfo.cpp @@ -63,6 +63,13 @@ LLVM_DUMP_METHOD void ABIArgInfo::dump() const { OS << "CoerceAndExpand Type="; getCoerceAndExpandType()->print(OS); break; + case TargetSpecific: + OS << "TargetSpecific Type="; + if (llvm::Type *Ty = getCoerceToType()) + Ty->print(OS); + else + OS << "null"; + break; } OS << ")\n"; } |