Consistently use quotes for LLVM includes.

This commit is contained in:
David Nadlinger
2013-02-07 17:59:09 +01:00
parent 6de735de31
commit 5616753768
5 changed files with 13 additions and 13 deletions

View File

@@ -20,9 +20,9 @@
#include <map> #include <map>
#include <string> #include <string>
#if LDC_LLVM_VER >= 302 #if LDC_LLVM_VER >= 302
#include <llvm/DebugInfo.h> #include "llvm/DebugInfo.h"
#else #else
#include <llvm/Analysis/DebugInfo.h> #include "llvm/Analysis/DebugInfo.h"
#endif #endif
#endif #endif

View File

@@ -20,9 +20,9 @@
#include <map> #include <map>
#include <string> #include <string>
#if LDC_LLVM_VER >= 302 #if LDC_LLVM_VER >= 302
#include <llvm/DebugInfo.h> #include "llvm/DebugInfo.h"
#else #else
#include <llvm/Analysis/DebugInfo.h> #include "llvm/Analysis/DebugInfo.h"
#endif #endif
#endif #endif

View File

@@ -307,7 +307,7 @@ llvm::FunctionType* DtoFunctionType(Type* type, Type* thistype, Type* nesttype,
////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////
#include <llvm/Support/raw_ostream.h> #include "llvm/Support/raw_ostream.h"
#include "llvm/Support/SourceMgr.h" #include "llvm/Support/SourceMgr.h"
#include "llvm/Assembly/Parser.h" #include "llvm/Assembly/Parser.h"

View File

@@ -16,9 +16,9 @@
#include "ir/irtypestruct.h" #include "ir/irtypestruct.h"
#if LDC_LLVM_VER >= 303 #if LDC_LLVM_VER >= 303
#include <llvm/IR/DerivedTypes.h> #include "llvm/IR/DerivedTypes.h"
#else #else
#include <llvm/DerivedTypes.h> #include "llvm/DerivedTypes.h"
#endif #endif
/// ///

View File

@@ -21,14 +21,14 @@
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <llvm/TableGen/Main.h> #include "llvm/TableGen/Main.h"
#if LDC_LLVM_VER < 302 #if LDC_LLVM_VER < 302
#include <llvm/TableGen/TableGenAction.h> #include "llvm/TableGen/TableGenAction.h"
#endif #endif
#include <llvm/TableGen/Record.h> #include "llvm/TableGen/Record.h"
#include <llvm/Support/CommandLine.h> #include "llvm/Support/CommandLine.h"
#include <llvm/Support/PathV1.h> #include "llvm/Support/PathV1.h"
#include <llvm/ADT/StringRef.h> #include "llvm/ADT/StringRef.h"
using namespace std; using namespace std;
using namespace llvm; using namespace llvm;