mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 10:16:36 +01:00
Consistently use quotes for LLVM includes.
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user