Renamed driver/target to .../targetmachine to avoid confusion with the frontend file.

This commit is contained in:
David Nadlinger 2013-10-05 22:38:15 +02:00
parent c5643219d4
commit 68c272d6d9
4 changed files with 6 additions and 6 deletions

View file

@ -184,7 +184,7 @@ file(GLOB IR_HDR ir/*.h)
set(DRV_SRC
driver/cl_options.cpp
driver/configfile.cpp
driver/target.cpp
driver/targetmachine.cpp
driver/toobj.cpp
driver/tool.cpp
driver/linker.cpp
@ -196,7 +196,7 @@ set(DRV_HDR
driver/cl_options.h
driver/configfile.h
driver/ldc-version.h
driver/target.h
driver/targetmachine.h
driver/toobj.h
driver/tool.h
)

View file

@ -19,7 +19,7 @@
#include "driver/configfile.h"
#include "driver/ldc-version.h"
#include "driver/linker.h"
#include "driver/target.h"
#include "driver/targetmachine.h"
#include "driver/toobj.h"
#include "gen/cl_helpers.h"
#include "gen/irstate.h"

View file

@ -1,4 +1,4 @@
//===-- target.cpp --------------------------------------------------------===//
//===-- targetmachine.cpp -------------------------------------------------===//
//
// LDC the LLVM D compiler
//
@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//
#include "driver/target.h"
#include "driver/targetmachine.h"
#include "llvm/ADT/Triple.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/Host.h"

View file

@ -1,4 +1,4 @@
//===-- driver/target.h - LLVM target setup ---------------------*- C++ -*-===//
//===-- driver/targetmachine.h - LLVM target setup --------------*- C++ -*-===//
//
// LDC the LLVM D compiler
//