diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-06 00:44:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-06 00:44:45 +0000 |
commit | 60955d42bd2b32946151183f29b3b8611a482ae7 (patch) | |
tree | 3877a225e64769a3945bc2c293764e0959dfda11 /llvm/lib/VMCore/LLVMContext.cpp | |
parent | fc4a1db23b93a33717a4e076792e66f1e5eb5a8c (diff) | |
download | bcm5719-llvm-60955d42bd2b32946151183f29b3b8611a482ae7.tar.gz bcm5719-llvm-60955d42bd2b32946151183f29b3b8611a482ae7.zip |
give LLVMContext an inline asm diagnostic hook member.
llvm-svn: 100506
Diffstat (limited to 'llvm/lib/VMCore/LLVMContext.cpp')
-rw-r--r-- | llvm/lib/VMCore/LLVMContext.cpp | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/LLVMContext.cpp b/llvm/lib/VMCore/LLVMContext.cpp index 2a870ec6cfd..3244f2842c4 100644 --- a/llvm/lib/VMCore/LLVMContext.cpp +++ b/llvm/lib/VMCore/LLVMContext.cpp @@ -33,6 +33,23 @@ LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) { } LLVMContext::~LLVMContext() { delete pImpl; } +void LLVMContext::setInlineAsmDiagnosticHandler(void *DiagHandler, + void *DiagContext) { + pImpl->InlineAsmDiagHandler = DiagHandler; + pImpl->InlineAsmDiagContext = DiagContext; +} + +/// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by +/// setInlineAsmDiagnosticHandler. +void *LLVMContext::getInlineAsmDiagnosticHandler() const { + return pImpl->InlineAsmDiagHandler; +} + +/// getInlineAsmDiagnosticContext - Return the diagnostic context set by +/// setInlineAsmDiagnosticHandler. +void *LLVMContext::getInlineAsmDiagnosticContext() const { + return pImpl->InlineAsmDiagContext; +} #ifndef NDEBUG /// isValidName - Return true if Name is a valid custom metadata handler name. @@ -73,5 +90,3 @@ void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const { // MD Handlers are numbered from 1. Names[I->second] = I->first(); } - - |