diff options
author | Devang Patel <dpatel@apple.com> | 2009-07-22 18:23:44 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-07-22 18:23:44 +0000 |
commit | c4999d71e162bab8c38fe104554a3b81b4f08771 (patch) | |
tree | b6d3252bb52bd58b8c9d79700c248df1f2e420fc /lib/Analysis | |
parent | 66a9d6702f6f6f89aac64bc0cd31c437836dfffc (diff) | |
download | external_llvm-c4999d71e162bab8c38fe104554a3b81b4f08771.zip external_llvm-c4999d71e162bab8c38fe104554a3b81b4f08771.tar.gz external_llvm-c4999d71e162bab8c38fe104554a3b81b4f08771.tar.bz2 |
Add replaceAllUsesWith() to FE replace debug info constructs while building complex types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/DebugInfo.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index 437ff03..aa012ef 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -206,6 +206,18 @@ unsigned DIArray::getNumElements() const { return C->getNumOperands(); } +/// replaceAllUsesWith - Replace all uses of debug info referenced by +/// this descriptor. After this completes, the current debug info value +/// is erased. +void DIDerivedType::replaceAllUsesWith(DIDescriptor &D) { + if (isNull()) + return; + + assert (D.isNull() && "Can not replace with null"); + getGV()->replaceAllUsesWith(D.getGV()); + getGV()->eraseFromParent(); +} + /// Verify - Verify that a compile unit is well formed. bool DICompileUnit::Verify() const { if (isNull()) |