diff options
author | Devang Patel <dpatel@apple.com> | 2009-06-29 20:45:18 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-06-29 20:45:18 +0000 |
commit | 40d784180b312e1dc8edd660861876c432d3e932 (patch) | |
tree | b087da3dbee379c96d4a0db10291e8e1a09d4d84 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 0bd61cb9f0fb416fa7bc19389217fe411493f247 (diff) | |
download | bcm5719-llvm-40d784180b312e1dc8edd660861876c432d3e932.tar.gz bcm5719-llvm-40d784180b312e1dc8edd660861876c432d3e932.zip |
s/MainCU/ModuleCU/g
llvm-svn: 74452
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 111ec33bb84..101dc705d3b 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -70,9 +70,8 @@ class VISIBILITY_HIDDEN DwarfDebug : public Dwarf { /// SmallVector<CompileUnit *, 8> CompileUnits; - /// MainCU - Some platform prefers one compile unit per .o file. In such - /// cases, all dies are inserted in MainCU. - CompileUnit *MainCU; + /// ModuleCU - All DIEs are inserted in ModuleCU. + CompileUnit *ModuleCU; /// AbbreviationsSet - Used to uniquely define abbreviations. /// |