summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-06-25 16:55:32 +0000
committerOwen Anderson <resistor@mac.com>2009-06-25 16:55:32 +0000
commita8dbf36f3f88917b101d7ab9d253ba2fe6e396b4 (patch)
tree442fea4e0a519a1742f50ce45c0e1d8e92a6a674 /include
parent2d7f78eb09dbc3471b22dcbcffa928a93cfa9a52 (diff)
downloadexternal_llvm-a8dbf36f3f88917b101d7ab9d253ba2fe6e396b4.zip
external_llvm-a8dbf36f3f88917b101d7ab9d253ba2fe6e396b4.tar.gz
external_llvm-a8dbf36f3f88917b101d7ab9d253ba2fe6e396b4.tar.bz2
Privatize some more debug-related static data.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 105d773..f3ca306 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -114,6 +114,9 @@ namespace llvm {
mutable const MachineInstr *LastMI;
mutable const Function *LastFn;
mutable unsigned Counter;
+
+ // Private state for processDebugLock()
+ mutable DebugLocTuple PrevDLT;
protected:
explicit AsmPrinter(raw_ostream &o, TargetMachine &TM,