mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 02:06:35 +01:00
Consistently use quotes for LLVM includes.
This commit is contained in:
@@ -20,9 +20,9 @@
|
||||
#include <map>
|
||||
#include <string>
|
||||
#if LDC_LLVM_VER >= 302
|
||||
#include <llvm/DebugInfo.h>
|
||||
#include "llvm/DebugInfo.h"
|
||||
#else
|
||||
#include <llvm/Analysis/DebugInfo.h>
|
||||
#include "llvm/Analysis/DebugInfo.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
@@ -20,9 +20,9 @@
|
||||
#include <map>
|
||||
#include <string>
|
||||
#if LDC_LLVM_VER >= 302
|
||||
#include <llvm/DebugInfo.h>
|
||||
#include "llvm/DebugInfo.h"
|
||||
#else
|
||||
#include <llvm/Analysis/DebugInfo.h>
|
||||
#include "llvm/Analysis/DebugInfo.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
@@ -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/Assembly/Parser.h"
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
|
||||
#include "ir/irtypestruct.h"
|
||||
#if LDC_LLVM_VER >= 303
|
||||
#include <llvm/IR/DerivedTypes.h>
|
||||
#include "llvm/IR/DerivedTypes.h"
|
||||
#else
|
||||
#include <llvm/DerivedTypes.h>
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#endif
|
||||
|
||||
///
|
||||
|
||||
@@ -21,14 +21,14 @@
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <llvm/TableGen/Main.h>
|
||||
#include "llvm/TableGen/Main.h"
|
||||
#if LDC_LLVM_VER < 302
|
||||
#include <llvm/TableGen/TableGenAction.h>
|
||||
#include "llvm/TableGen/TableGenAction.h"
|
||||
#endif
|
||||
#include <llvm/TableGen/Record.h>
|
||||
#include <llvm/Support/CommandLine.h>
|
||||
#include <llvm/Support/PathV1.h>
|
||||
#include <llvm/ADT/StringRef.h>
|
||||
#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;
|
||||
|
||||
Reference in New Issue
Block a user