summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-11-21 00:34:35 +0000
committerEric Christopher <echristo@gmail.com>2012-11-21 00:34:35 +0000
commit7b30f2e43bbd57581e5d6e5177b8ecb4bd074e3f (patch)
tree41e7cfb0b6fdc7d1ce24b679d232c83a2927f674 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
parent5d1cf930df28c2a80643473ea9821d378ae9e1eb (diff)
downloadbcm5719-llvm-7b30f2e43bbd57581e5d6e5177b8ecb4bd074e3f.tar.gz
bcm5719-llvm-7b30f2e43bbd57581e5d6e5177b8ecb4bd074e3f.zip
Update for some of the coding standard before rearranging functions
around. llvm-svn: 168401
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
index 0582635a363..d51dfc4b641 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
@@ -318,9 +318,9 @@ class DwarfDebug {
// Holders for the various debug information flags that we might need to
// have exposed. See accessor functions below for description.
- bool isDarwinGDBCompat;
- bool hasDwarfAccelTables;
- bool hasDwarfFission;
+ bool IsDarwinGDBCompat;
+ bool HasDwarfAccelTables;
+ bool HasDwarfFission;
private:
/// assignAbbrevNumber - Define a unique number for the abbreviation.
@@ -352,7 +352,7 @@ private:
/// EmitSectionLabels - Emit initial Dwarf sections with a label at
/// the start of each one.
- void EmitSectionLabels();
+ void emitSectionLabels();
/// emitDIE - Recursively Emits a debug information entry.
///
@@ -410,7 +410,7 @@ private:
/// EmitDebugARanges - Emit visible names into a debug aranges section.
///
- void EmitDebugARanges();
+ void emitDebugARanges();
/// emitDebugRanges - Emit visible names into a debug ranges section.
///
@@ -524,10 +524,10 @@ public:
/// endInstruction - Prcess end of an instruction.
void endInstruction(const MachineInstr *MI);
- /// GetOrCreateSourceID - Look up the source id with the given directory and
+ /// getOrCreateSourceID - Look up the source id with the given directory and
/// source file names. If none currently exists, create a new id and insert it
/// in the SourceIds map.
- unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
+ unsigned getOrCreateSourceID(StringRef DirName, StringRef FullName);
/// getStringPool - returns the entry into the start of the pool.
MCSymbol *getStringPool();
@@ -538,17 +538,17 @@ public:
/// useDarwinGDBCompat - returns whether or not to limit some of our debug
/// output to the limitations of darwin gdb.
- bool useDarwinGDBCompat() { return isDarwinGDBCompat; }
+ bool useDarwinGDBCompat() { return IsDarwinGDBCompat; }
// Experimental DWARF5 features.
/// useDwarfAccelTables - returns whether or not to emit tables that
/// dwarf consumers can use to accelerate lookup.
- bool useDwarfAccelTables() { return hasDwarfAccelTables; }
+ bool useDwarfAccelTables() { return HasDwarfAccelTables; }
/// useDwarfFission - returns whether or not to change the current debug
/// info for the fission proposal support.
- bool useDwarfFission() { return hasDwarfFission; }
+ bool useDwarfFission() { return HasDwarfFission; }
};
} // End of namespace llvm
OpenPOWER on IntegriCloud