diff options
author | Bob Wilson <bob.wilson@apple.com> | 2013-02-11 05:37:07 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2013-02-11 05:37:07 +0000 |
commit | a594fab454c789c4fa91005893075339c1eff35d (patch) | |
tree | e99aa4603b04149b36540e5eb56a5a30d1c6df2d /llvm/lib/IR/LLVMContextImpl.h | |
parent | cb268f7995b445af2177f55d2adf809200001e23 (diff) | |
download | bcm5719-llvm-a594fab454c789c4fa91005893075339c1eff35d.tar.gz bcm5719-llvm-a594fab454c789c4fa91005893075339c1eff35d.zip |
Revert "Rename LLVMContext diagnostic handler types and functions."
This reverts my commit 171047. Now that I've removed my misguided attempt to
support backend warnings, these diagnostics are only about inline assembly.
It would take quite a bit more work to generalize them properly, so I'm
just reverting this.
llvm-svn: 174860
Diffstat (limited to 'llvm/lib/IR/LLVMContextImpl.h')
-rw-r--r-- | llvm/lib/IR/LLVMContextImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/LLVMContextImpl.h b/llvm/lib/IR/LLVMContextImpl.h index cc7ca5e1288..7353dc03611 100644 --- a/llvm/lib/IR/LLVMContextImpl.h +++ b/llvm/lib/IR/LLVMContextImpl.h @@ -236,8 +236,8 @@ public: /// will be automatically deleted if this context is deleted. SmallPtrSet<Module*, 4> OwnedModules; - LLVMContext::DiagHandlerTy DiagHandler; - void *DiagContext; + LLVMContext::InlineAsmDiagHandlerTy InlineAsmDiagHandler; + void *InlineAsmDiagContext; typedef DenseMap<DenseMapAPIntKeyInfo::KeyTy, ConstantInt*, DenseMapAPIntKeyInfo> IntMapTy; |