diff options
author | Eric Christopher <echristo@gmail.com> | 2013-08-26 23:58:22 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-08-26 23:58:22 +0000 |
commit | fdaf0308c8d2d58dc156e553fb11947a0a3dfafb (patch) | |
tree | 02f0ae24672f56a5224d7ab9914f960b0c8e5464 /lib | |
parent | 30410d5993f3c99da9102ccf6f78a63f9f64f252 (diff) | |
download | external_llvm-fdaf0308c8d2d58dc156e553fb11947a0a3dfafb.zip external_llvm-fdaf0308c8d2d58dc156e553fb11947a0a3dfafb.tar.gz external_llvm-fdaf0308c8d2d58dc156e553fb11947a0a3dfafb.tar.bz2 |
Formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 7713c02..ecffb25 100644 --- a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -100,25 +100,25 @@ public: ~CompileUnit(); // Accessors. - unsigned getUniqueID() const { return UniqueID; } + unsigned getUniqueID() const { return UniqueID; } uint16_t getLanguage() const { return DICompileUnit(Node).getLanguage(); } const MDNode *getNode() const { return Node; } - DIE* getCUDie() const { return CUDie.get(); } - unsigned getDebugInfoOffset() const { return DebugInfoOffset; } - const StringMap<DIE*> &getGlobalNames() const { return GlobalNames; } - const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; } + DIE *getCUDie() const { return CUDie.get(); } + unsigned getDebugInfoOffset() const { return DebugInfoOffset; } + const StringMap<DIE *> &getGlobalNames() const { return GlobalNames; } + const StringMap<DIE *> &getGlobalTypes() const { return GlobalTypes; } - const StringMap<std::vector<DIE*> > &getAccelNames() const { + const StringMap<std::vector<DIE *> > &getAccelNames() const { return AccelNames; } - const StringMap<std::vector<DIE*> > &getAccelObjC() const { + const StringMap<std::vector<DIE *> > &getAccelObjC() const { return AccelObjC; } - const StringMap<std::vector<DIE*> > &getAccelNamespace() const { + const StringMap<std::vector<DIE *> > &getAccelNamespace() const { return AccelNamespace; } - const StringMap<std::vector<std::pair<DIE*, unsigned > > > - &getAccelTypes() const { + const StringMap<std::vector<std::pair<DIE *, unsigned> > > & + getAccelTypes() const { return AccelTypes; } |