diff options
Diffstat (limited to 'llvm/lib/IR/LLVMContext.cpp')
-rw-r--r-- | llvm/lib/IR/LLVMContext.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/IR/LLVMContext.cpp b/llvm/lib/IR/LLVMContext.cpp index d9d6de15447..1bfc5152773 100644 --- a/llvm/lib/IR/LLVMContext.cpp +++ b/llvm/lib/IR/LLVMContext.cpp @@ -142,6 +142,9 @@ void LLVMContext::diagnose(const DiagnosticInfo &DI) { case DS_Warning: errs() << "warning: " << MsgStorage << "\n"; break; + case DS_Remark: + errs() << "remark: " << MsgStorage << "\n"; + break; case DS_Note: errs() << "note: " << MsgStorage << "\n"; break; |