mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 19:06:02 +03:00
Renamed driver/target to .../targetmachine to avoid confusion with the frontend file.
This commit is contained in:
parent
c5643219d4
commit
68c272d6d9
4 changed files with 6 additions and 6 deletions
|
@ -184,7 +184,7 @@ file(GLOB IR_HDR ir/*.h)
|
||||||
set(DRV_SRC
|
set(DRV_SRC
|
||||||
driver/cl_options.cpp
|
driver/cl_options.cpp
|
||||||
driver/configfile.cpp
|
driver/configfile.cpp
|
||||||
driver/target.cpp
|
driver/targetmachine.cpp
|
||||||
driver/toobj.cpp
|
driver/toobj.cpp
|
||||||
driver/tool.cpp
|
driver/tool.cpp
|
||||||
driver/linker.cpp
|
driver/linker.cpp
|
||||||
|
@ -196,7 +196,7 @@ set(DRV_HDR
|
||||||
driver/cl_options.h
|
driver/cl_options.h
|
||||||
driver/configfile.h
|
driver/configfile.h
|
||||||
driver/ldc-version.h
|
driver/ldc-version.h
|
||||||
driver/target.h
|
driver/targetmachine.h
|
||||||
driver/toobj.h
|
driver/toobj.h
|
||||||
driver/tool.h
|
driver/tool.h
|
||||||
)
|
)
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include "driver/configfile.h"
|
#include "driver/configfile.h"
|
||||||
#include "driver/ldc-version.h"
|
#include "driver/ldc-version.h"
|
||||||
#include "driver/linker.h"
|
#include "driver/linker.h"
|
||||||
#include "driver/target.h"
|
#include "driver/targetmachine.h"
|
||||||
#include "driver/toobj.h"
|
#include "driver/toobj.h"
|
||||||
#include "gen/cl_helpers.h"
|
#include "gen/cl_helpers.h"
|
||||||
#include "gen/irstate.h"
|
#include "gen/irstate.h"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//===-- target.cpp --------------------------------------------------------===//
|
//===-- targetmachine.cpp -------------------------------------------------===//
|
||||||
//
|
//
|
||||||
// LDC – the LLVM D compiler
|
// LDC – the LLVM D compiler
|
||||||
//
|
//
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "driver/target.h"
|
#include "driver/targetmachine.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
#include "llvm/MC/SubtargetFeature.h"
|
#include "llvm/MC/SubtargetFeature.h"
|
||||||
#include "llvm/Support/Host.h"
|
#include "llvm/Support/Host.h"
|
|
@ -1,4 +1,4 @@
|
||||||
//===-- driver/target.h - LLVM target setup ---------------------*- C++ -*-===//
|
//===-- driver/targetmachine.h - LLVM target setup --------------*- C++ -*-===//
|
||||||
//
|
//
|
||||||
// LDC – the LLVM D compiler
|
// LDC – the LLVM D compiler
|
||||||
//
|
//
|
Loading…
Add table
Add a link
Reference in a new issue