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
commit6f37f8f9c3174f7a09344ed25e095b1d6b1ff024 (patch)
treefc575b16de89fb722178b2063078425984504e4d
parentd129d73b725e32d2fc0c87f392c239db8801e922 (diff)
downloadexternal_llvm-6f37f8f9c3174f7a09344ed25e095b1d6b1ff024.zip
external_llvm-6f37f8f9c3174f7a09344ed25e095b1d6b1ff024.tar.gz
external_llvm-6f37f8f9c3174f7a09344ed25e095b1d6b1ff024.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"