aboutsummaryrefslogtreecommitdiff
path: root/lldb/utils
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-02-17 15:57:45 -0800
committerJonas Devlieghere <jonas@devlieghere.com>2020-02-17 23:15:40 -0800
commitcdc514e4c67f268b07863bbac3d8d7e0d088186c (patch)
treef0fb246ba7873555bfac50427bf4a95948da4aae /lldb/utils
parent866b7a651949f373a3b191f5fee3a7fe0a2709be (diff)
downloadllvm-cdc514e4c67f268b07863bbac3d8d7e0d088186c.zip
llvm-cdc514e4c67f268b07863bbac3d8d7e0d088186c.tar.gz
llvm-cdc514e4c67f268b07863bbac3d8d7e0d088186c.tar.bz2
[lldb] Update header guards to be consistent and compliant with LLVM (NFC)
LLDB has a few different styles of header guards and they're not very consistent because things get moved around or copy/pasted. This patch unifies the header guards across LLDB and converts everything to match LLVM's style. Differential revision: https://reviews.llvm.org/D74743
Diffstat (limited to 'lldb/utils')
-rw-r--r--lldb/utils/TableGen/LLDBTableGenBackends.h4
-rw-r--r--lldb/utils/TableGen/LLDBTableGenUtils.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lldb/utils/TableGen/LLDBTableGenBackends.h b/lldb/utils/TableGen/LLDBTableGenBackends.h
index b424abf..88ae088 100644
--- a/lldb/utils/TableGen/LLDBTableGenBackends.h
+++ b/lldb/utils/TableGen/LLDBTableGenBackends.h
@@ -13,8 +13,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_LLDB_UTILS_TABLEGEN_TABLEGENBACKENDS_H
-#define LLVM_LLDB_UTILS_TABLEGEN_TABLEGENBACKENDS_H
+#ifndef LLDB_UTILS_TABLEGEN_LLDBTABLEGENBACKENDS_H
+#define LLDB_UTILS_TABLEGEN_LLDBTABLEGENBACKENDS_H
#include "llvm/ADT/StringRef.h"
diff --git a/lldb/utils/TableGen/LLDBTableGenUtils.h b/lldb/utils/TableGen/LLDBTableGenUtils.h
index 5553cec..76f0df9 100644
--- a/lldb/utils/TableGen/LLDBTableGenUtils.h
+++ b/lldb/utils/TableGen/LLDBTableGenUtils.h
@@ -6,8 +6,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_LLDB_UTILS_TABLEGEN_TABLEGENUTILS_H
-#define LLVM_LLDB_UTILS_TABLEGEN_TABLEGENUTILS_H
+#ifndef LLDB_UTILS_TABLEGEN_LLDBTABLEGENUTILS_H
+#define LLDB_UTILS_TABLEGEN_LLDBTABLEGENUTILS_H
#include "llvm/ADT/StringRef.h"
#include <map>