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 | 58dabb44063f1ba684e0329b09f363a6d65319d0 (patch) | |
tree | 49be9e5574d56452a693fb6407c8b5900ce8a4c0 /llvm/lib | |
parent | 73d10dc47b30baad2ab4fb76ff1b6ffd27bfc670 (diff) | |
download | bcm5719-llvm-58dabb44063f1ba684e0329b09f363a6d65319d0.tar.gz bcm5719-llvm-58dabb44063f1ba684e0329b09f363a6d65319d0.zip |
Standardize the names of include guards.
Remove more excess whitespace.
llvm-svn: 8644
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h index a767dbdcc52..9596e044070 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/llvm/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 - |