aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-17 20:32:07 +0000
committerChris Lattner <sabre@nondot.org>2009-07-17 20:32:07 +0000
commit3d8214accfbf38af576dbfe4fe624ac3f22e5d59 (patch)
treefc575b16de89fb722178b2063078425984504e4d
parentcb11cae299f9413e37930761e04090fe119acf2f (diff)
downloadexternal_llvm-3d8214accfbf38af576dbfe4fe624ac3f22e5d59.zip
external_llvm-3d8214accfbf38af576dbfe4fe624ac3f22e5d59.tar.gz
external_llvm-3d8214accfbf38af576dbfe4fe624ac3f22e5d59.tar.bz2
fix include guard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76228 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfException.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.h b/lib/CodeGen/AsmPrinter/DwarfException.h
index f1c3e56..305dee6 100644
--- a/lib/CodeGen/AsmPrinter/DwarfException.h
+++ b/lib/CodeGen/AsmPrinter/DwarfException.h
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef CODEGEN_ASMPRINTER_DWARFEXCEPTION_H__
-#define CODEGEN_ASMPRINTER_DWARFEXCEPTION_H__
+#ifndef LLVM_CODEGEN_ASMPRINTER_DWARFEXCEPTION_H
+#define LLVM_CODEGEN_ASMPRINTER_DWARFEXCEPTION_H
#include "DIE.h"
#include "DwarfPrinter.h"