aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2007-09-18 05:03:44 +0000
committerBill Wendling <isanbard@gmail.com>2007-09-18 05:03:44 +0000
commit5f19cf5df86bb47a4572bd5a5245798c3ec6d7e7 (patch)
tree46564c8d97541c2b46b760b1c7840dfc49c0caf7 /include/llvm
parent8b94a14a782867b1da1f272b6f502562d0c2a1aa (diff)
downloadexternal_llvm-5f19cf5df86bb47a4572bd5a5245798c3ec6d7e7.zip
external_llvm-5f19cf5df86bb47a4572bd5a5245798c3ec6d7e7.tar.gz
external_llvm-5f19cf5df86bb47a4572bd5a5245798c3ec6d7e7.tar.bz2
The exception handling function info should be reset for each new
function. The information isn't used heavily -- it's only used at the end of exception handling emission -- so there's no need to cache it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 08a4b60..31fb0f4 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -43,11 +43,6 @@ namespace llvm {
///
unsigned FunctionNumber;
- /// Cache of mangled exception handling name for current function. This is
- /// recalculated at the beginning of each call to runOnMachineFunction().
- ///
- std::string CurrentFnEHName;
-
protected:
// Necessary for external weak linkage support
std::set<const GlobalValue*> ExtWeakSymbols;