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/tools/lli | |
| 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/tools/lli')
| -rw-r--r-- | llvm/tools/lli/RPCChannel.h | 6 | ||||
| -rw-r--r-- | llvm/tools/lli/RemoteMemoryManager.h | 4 | ||||
| -rw-r--r-- | llvm/tools/lli/RemoteTarget.h | 4 | ||||
| -rw-r--r-- | llvm/tools/lli/RemoteTargetExternal.h | 6 | ||||
| -rw-r--r-- | llvm/tools/lli/RemoteTargetMessage.h | 4 |
5 files changed, 12 insertions, 12 deletions
diff --git a/llvm/tools/lli/RPCChannel.h b/llvm/tools/lli/RPCChannel.h index 2d8c7081284..ebd3c65640b 100644 --- a/llvm/tools/lli/RPCChannel.h +++ b/llvm/tools/lli/RPCChannel.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLI_RPCCHANNEL_H -#define LLI_RPCCHANNEL_H +#ifndef LLVM_TOOLS_LLI_RPCCHANNEL_H +#define LLVM_TOOLS_LLI_RPCCHANNEL_H #include <stdlib.h> #include <string> @@ -46,4 +46,4 @@ public: } // end namespace llvm -#endif // LLI_RPCCHANNEL_H +#endif diff --git a/llvm/tools/lli/RemoteMemoryManager.h b/llvm/tools/lli/RemoteMemoryManager.h index cf5d7c6e5db..2ce00e45586 100644 --- a/llvm/tools/lli/RemoteMemoryManager.h +++ b/llvm/tools/lli/RemoteMemoryManager.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef REMOTEMEMORYMANAGER_H -#define REMOTEMEMORYMANAGER_H +#ifndef LLVM_TOOLS_LLI_REMOTEMEMORYMANAGER_H +#define LLVM_TOOLS_LLI_REMOTEMEMORYMANAGER_H #include "RemoteTarget.h" #include "llvm/ADT/DenseMap.h" diff --git a/llvm/tools/lli/RemoteTarget.h b/llvm/tools/lli/RemoteTarget.h index 73e8ae2284d..ee758a2747a 100644 --- a/llvm/tools/lli/RemoteTarget.h +++ b/llvm/tools/lli/RemoteTarget.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef REMOTEPROCESS_H -#define REMOTEPROCESS_H +#ifndef LLVM_TOOLS_LLI_REMOTETARGET_H +#define LLVM_TOOLS_LLI_REMOTETARGET_H #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" diff --git a/llvm/tools/lli/RemoteTargetExternal.h b/llvm/tools/lli/RemoteTargetExternal.h index f87fc6199f3..bb621f5c50f 100644 --- a/llvm/tools/lli/RemoteTargetExternal.h +++ b/llvm/tools/lli/RemoteTargetExternal.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLI_REMOTETARGETEXTERNAL_H -#define LLI_REMOTETARGETEXTERNAL_H +#ifndef LLVM_TOOLS_LLI_REMOTETARGETEXTERNAL_H +#define LLVM_TOOLS_LLI_REMOTETARGETEXTERNAL_H #include "RPCChannel.h" #include "RemoteTarget.h" @@ -140,4 +140,4 @@ private: } // end namespace llvm -#endif // LLI_REMOTETARGETEXTERNAL_H +#endif diff --git a/llvm/tools/lli/RemoteTargetMessage.h b/llvm/tools/lli/RemoteTargetMessage.h index cb934a1066b..c210e4b3d6b 100644 --- a/llvm/tools/lli/RemoteTargetMessage.h +++ b/llvm/tools/lli/RemoteTargetMessage.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLI_REMOTETARGETMESSAGE_H -#define LLI_REMOTETARGETMESSAGE_H +#ifndef LLVM_TOOLS_LLI_REMOTETARGETMESSAGE_H +#define LLVM_TOOLS_LLI_REMOTETARGETMESSAGE_H namespace llvm { |

