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.cpp | |
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.cpp')
-rw-r--r-- | llvm/lib/IR/LLVMContextImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/LLVMContextImpl.cpp b/llvm/lib/IR/LLVMContextImpl.cpp index 89e163f5141..6a6a4d6801f 100644 --- a/llvm/lib/IR/LLVMContextImpl.cpp +++ b/llvm/lib/IR/LLVMContextImpl.cpp @@ -35,8 +35,8 @@ LLVMContextImpl::LLVMContextImpl(LLVMContext &C) Int16Ty(C, 16), Int32Ty(C, 32), Int64Ty(C, 64) { - DiagHandler = 0; - DiagContext = 0; + InlineAsmDiagHandler = 0; + InlineAsmDiagContext = 0; NamedStructTypesUniqueID = 0; } |