From 561675376895cb2fa185a0372f6f767ae61a0f02 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Thu, 7 Feb 2013 17:59:09 +0100 Subject: [PATCH] Consistently use quotes for LLVM includes. --- dmd/declaration.h | 4 ++-- dmd2/declaration.h | 4 ++-- gen/functions.cpp | 2 +- ir/irtypeclass.h | 4 ++-- utils/gen_gccbuiltins.cpp | 12 ++++++------ 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/dmd/declaration.h b/dmd/declaration.h index 1bbef094..ba3a79a7 100644 --- a/dmd/declaration.h +++ b/dmd/declaration.h @@ -20,9 +20,9 @@ #include #include #if LDC_LLVM_VER >= 302 -#include +#include "llvm/DebugInfo.h" #else -#include +#include "llvm/Analysis/DebugInfo.h" #endif #endif diff --git a/dmd2/declaration.h b/dmd2/declaration.h index 30b9161c..ee488b2d 100644 --- a/dmd2/declaration.h +++ b/dmd2/declaration.h @@ -20,9 +20,9 @@ #include #include #if LDC_LLVM_VER >= 302 -#include +#include "llvm/DebugInfo.h" #else -#include +#include "llvm/Analysis/DebugInfo.h" #endif #endif diff --git a/gen/functions.cpp b/gen/functions.cpp index 549f2db3..96bad4fa 100644 --- a/gen/functions.cpp +++ b/gen/functions.cpp @@ -307,7 +307,7 @@ llvm::FunctionType* DtoFunctionType(Type* type, Type* thistype, Type* nesttype, ////////////////////////////////////////////////////////////////////////////////////////// -#include +#include "llvm/Support/raw_ostream.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Assembly/Parser.h" diff --git a/ir/irtypeclass.h b/ir/irtypeclass.h index 11b1371a..3a6adc77 100644 --- a/ir/irtypeclass.h +++ b/ir/irtypeclass.h @@ -16,9 +16,9 @@ #include "ir/irtypestruct.h" #if LDC_LLVM_VER >= 303 -#include +#include "llvm/IR/DerivedTypes.h" #else -#include +#include "llvm/DerivedTypes.h" #endif /// diff --git a/utils/gen_gccbuiltins.cpp b/utils/gen_gccbuiltins.cpp index 6cffcce3..5c095acb 100644 --- a/utils/gen_gccbuiltins.cpp +++ b/utils/gen_gccbuiltins.cpp @@ -21,14 +21,14 @@ #include #include -#include +#include "llvm/TableGen/Main.h" #if LDC_LLVM_VER < 302 -#include +#include "llvm/TableGen/TableGenAction.h" #endif -#include -#include -#include -#include +#include "llvm/TableGen/Record.h" +#include "llvm/Support/CommandLine.h" +#include "llvm/Support/PathV1.h" +#include "llvm/ADT/StringRef.h" using namespace std; using namespace llvm;