diff options
-rw-r--r-- | llvm/include/llvm/IR/DiagnosticInfo.h | 6 | ||||
-rw-r--r-- | llvm/lib/IR/DiagnosticInfo.cpp | 12 |
2 files changed, 14 insertions, 4 deletions
diff --git a/llvm/include/llvm/IR/DiagnosticInfo.h b/llvm/include/llvm/IR/DiagnosticInfo.h index 69a73fa1985..b2fa898d353 100644 --- a/llvm/include/llvm/IR/DiagnosticInfo.h +++ b/llvm/include/llvm/IR/DiagnosticInfo.h @@ -421,9 +421,11 @@ public: Argument(StringRef Key, const Type *T); Argument(StringRef Key, StringRef S); Argument(StringRef Key, int N); - Argument(StringRef Key, int64_t N); + Argument(StringRef Key, long N); + Argument(StringRef Key, long long N); Argument(StringRef Key, unsigned N); - Argument(StringRef Key, uint64_t N); + Argument(StringRef Key, unsigned long N); + Argument(StringRef Key, unsigned long long N); Argument(StringRef Key, bool B) : Key(Key), Val(B ? "true" : "false") {} Argument(StringRef Key, DebugLoc dl); }; diff --git a/llvm/lib/IR/DiagnosticInfo.cpp b/llvm/lib/IR/DiagnosticInfo.cpp index 4ae5ddc64e6..3f1a2879b33 100644 --- a/llvm/lib/IR/DiagnosticInfo.cpp +++ b/llvm/lib/IR/DiagnosticInfo.cpp @@ -221,13 +221,21 @@ DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, StringRef S) DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int N) : Key(Key), Val(itostr(N)) {} -DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int64_t N) +DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long N) + : Key(Key), Val(itostr(N)) {} + +DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long long N) : Key(Key), Val(itostr(N)) {} DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, unsigned N) : Key(Key), Val(utostr(N)) {} -DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, uint64_t N) +DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, + unsigned long N) + : Key(Key), Val(utostr(N)) {} + +DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, + unsigned long long N) : Key(Key), Val(utostr(N)) {} DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, DebugLoc Loc) |