diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-21 02:31:25 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-21 02:31:25 +0000 |
commit | fdb2596c7730b4416c3c4bcd588a3d1a400781be (patch) | |
tree | f34a64cd02109c411e3c7a1ba57f1c59e723c71a | |
parent | 6264fb70c14562266e3d3973ddd108e962f5eb92 (diff) | |
download | external_llvm-fdb2596c7730b4416c3c4bcd588a3d1a400781be.zip external_llvm-fdb2596c7730b4416c3c4bcd588a3d1a400781be.tar.gz external_llvm-fdb2596c7730b4416c3c4bcd588a3d1a400781be.tar.bz2 |
Standardize the names of include guards.
Remove more excess whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8644 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/RegAlloc/PhyRegAlloc.h | 6 | ||||
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index a767dbd..9596e04 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -16,8 +16,8 @@ except coloring of an individual node are machine independent. */ -#ifndef PHY_REG_ALLOC_H -#define PHY_REG_ALLOC_H +#ifndef PHYREGALLOC_H +#define PHYREGALLOC_H #include "LiveRangeInfo.h" #include "llvm/Pass.h" @@ -167,6 +167,4 @@ private: void addInterf4PseudoInstr(const MachineInstr *MI); }; - #endif - diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index a767dbd..9596e04 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -16,8 +16,8 @@ except coloring of an individual node are machine independent. */ -#ifndef PHY_REG_ALLOC_H -#define PHY_REG_ALLOC_H +#ifndef PHYREGALLOC_H +#define PHYREGALLOC_H #include "LiveRangeInfo.h" #include "llvm/Pass.h" @@ -167,6 +167,4 @@ private: void addInterf4PseudoInstr(const MachineInstr *MI); }; - #endif - |