diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-09-15 13:46:21 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-09-15 13:46:21 +0000 |
commit | c40de480418dae6cd11df64528c0074229e83769 (patch) | |
tree | b6ad2b016790cd1963f00068aa8a75f2a0990cea /llvm/lib/Target/XCore/XCoreSubtarget.cpp | |
parent | d1062bbd893a43004a19a65c414b0453cf3ca04d (diff) | |
download | bcm5719-llvm-c40de480418dae6cd11df64528c0074229e83769.tar.gz bcm5719-llvm-c40de480418dae6cd11df64528c0074229e83769.zip |
Revert r247684 - Replace Triple with a new TargetTuple ...
LLDB needs to be updated in the same commit.
llvm-svn: 247686
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreSubtarget.cpp')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreSubtarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/XCore/XCoreSubtarget.cpp b/llvm/lib/Target/XCore/XCoreSubtarget.cpp index 759d1f45bb4..99ad2c88504 100644 --- a/llvm/lib/Target/XCore/XCoreSubtarget.cpp +++ b/llvm/lib/Target/XCore/XCoreSubtarget.cpp @@ -27,5 +27,5 @@ void XCoreSubtarget::anchor() { } XCoreSubtarget::XCoreSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS, const TargetMachine &TM) - : XCoreGenSubtargetInfo(TargetTuple(TT), CPU, FS), InstrInfo(), - FrameLowering(*this), TLInfo(TM, *this), TSInfo() {} + : XCoreGenSubtargetInfo(TT, CPU, FS), InstrInfo(), FrameLowering(*this), + TLInfo(TM, *this), TSInfo() {} |