diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-18 07:40:22 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-18 07:40:22 +0000 |
commit | 2b7a1ff77fc36f79cd7b40944a4267ee83934a7e (patch) | |
tree | 6182df060ccc31178fff3e6f1ec5b61231ee6eed | |
parent | cc5f8f0d9eb38512c9def8487a6fa3df8645876b (diff) | |
download | bcm5719-llvm-2b7a1ff77fc36f79cd7b40944a4267ee83934a7e.tar.gz bcm5719-llvm-2b7a1ff77fc36f79cd7b40944a4267ee83934a7e.zip |
Coding style cleanups. No functionality change.
llvm-svn: 142341
-rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h b/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h index 8b099eab91f..20890ed2327 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h @@ -1,7 +1,4 @@ -#ifndef LLVM_Mips_MipsFIXUPKINDS_H -#define LLVM_Mips_MipsFIXUPKINDS_H - -//===-- Mips/MipsFixupKinds.h - Mips Specific Fixup Entries --------*- C++ -*-===// +//===-- Mips/MipsFixupKinds.h - Mips Specific Fixup Entries -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -10,6 +7,8 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_Mips_MipsFIXUPKINDS_H +#define LLVM_Mips_MipsFIXUPKINDS_H #include "llvm/MC/MCFixup.h" @@ -83,8 +82,8 @@ namespace Mips { LastTargetFixupKind, NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind }; -} // namespace llvm } // namespace Mips +} // namespace llvm -#endif /* LLVM_Mips_MipsFIXUPKINDS_H */ +#endif // LLVM_Mips_MipsFIXUPKINDS_H |