diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-08-13 16:26:38 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-08-13 16:26:38 +0000 |
commit | a7c40ef0224ba21c53d28b90fddbae0d4c5329c2 (patch) | |
tree | ff4d6a904732bf29d95097bc8292e3d3ec4124ef /llvm/lib/Target/XCore/MCTargetDesc | |
parent | 2f5db8b3db7546bb911608f4c7e85962c6019bc7 (diff) | |
download | bcm5719-llvm-a7c40ef0224ba21c53d28b90fddbae0d4c5329c2.tar.gz bcm5719-llvm-a7c40ef0224ba21c53d28b90fddbae0d4c5329c2.zip |
Canonicalize header guards into a common format.
Add header guards to files that were missing guards. Remove #endif comments
as they don't seem common in LLVM (we can easily add them back if we decide
they're useful)
Changes made by clang-tidy with minor tweaks.
llvm-svn: 215558
Diffstat (limited to 'llvm/lib/Target/XCore/MCTargetDesc')
-rw-r--r-- | llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h | 4 | ||||
-rw-r--r-- | llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h b/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h index da2689a6400..26df211eece 100644 --- a/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h +++ b/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef XCORETARGETASMINFO_H -#define XCORETARGETASMINFO_H +#ifndef LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCASMINFO_H +#define LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCASMINFO_H #include "llvm/MC/MCAsmInfoELF.h" diff --git a/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h b/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h index a255adb2e0f..0ff5961b144 100644 --- a/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h +++ b/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef XCOREMCTARGETDESC_H -#define XCOREMCTARGETDESC_H +#ifndef LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCTARGETDESC_H +#define LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCTARGETDESC_H namespace llvm { class Target; |