diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-24 22:53:20 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-24 22:53:20 +0000 |
commit | 696d486e629cb3747d0641d03fd63dbf37a0b18f (patch) | |
tree | 263994820afbe4cec0822626fce26f833a2601e5 /include | |
parent | e8eb2367d282160c24623110bc8ff7fbb098324d (diff) | |
download | external_llvm-696d486e629cb3747d0641d03fd63dbf37a0b18f.zip external_llvm-696d486e629cb3747d0641d03fd63dbf37a0b18f.tar.gz external_llvm-696d486e629cb3747d0641d03fd63dbf37a0b18f.tar.bz2 |
Down with statics!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 105d773..9f74452 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 dump() + static unsigned IndentLevel; protected: explicit AsmPrinter(raw_ostream &o, TargetMachine &TM, |