From a7c40ef0224ba21c53d28b90fddbae0d4c5329c2 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 13 Aug 2014 16:26:38 +0000 Subject: 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 --- llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/Target/R600/InstPrinter') diff --git a/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h b/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h index 4236404d9b5..83f42a18a46 100644 --- a/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h +++ b/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h @@ -10,8 +10,8 @@ /// \file //===----------------------------------------------------------------------===// -#ifndef AMDGPUINSTPRINTER_H -#define AMDGPUINSTPRINTER_H +#ifndef LLVM_LIB_TARGET_R600_INSTPRINTER_AMDGPUINSTPRINTER_H +#define LLVM_LIB_TARGET_R600_INSTPRINTER_AMDGPUINSTPRINTER_H #include "llvm/ADT/StringRef.h" #include "llvm/MC/MCInstPrinter.h" @@ -72,4 +72,4 @@ private: } // End namespace llvm -#endif // AMDGPUINSTRPRINTER_H +#endif -- cgit v1.2.3