summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZTargetMachine.h
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-07-08 09:35:23 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-07-08 09:35:23 +0000
commitdff0009d0ced62b92cb5900bc2203ec40142ba15 (patch)
treed79c3350233490455c9b9c623ff5376369b3f1c2 /lib/Target/SystemZ/SystemZTargetMachine.h
parent12b701beea6f26d2305dc18cf09838da1d068006 (diff)
downloadllvm-dff0009d0ced62b92cb5900bc2203ec40142ba15.tar.gz
llvm-dff0009d0ced62b92cb5900bc2203ec40142ba15.tar.bz2
llvm-dff0009d0ced62b92cb5900bc2203ec40142ba15.tar.xz
[SystemZ] Use MVC for memcpy
Use MVC for memcpy in cases where a single MVC is enough. Using MVC is a win for longer copies too, but I'll leave that for later. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZTargetMachine.h')
-rw-r--r--lib/Target/SystemZ/SystemZTargetMachine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/SystemZ/SystemZTargetMachine.h b/lib/Target/SystemZ/SystemZTargetMachine.h
index 98614e7b7e..a99a98e084 100644
--- a/lib/Target/SystemZ/SystemZTargetMachine.h
+++ b/lib/Target/SystemZ/SystemZTargetMachine.h
@@ -20,10 +20,10 @@
#include "SystemZInstrInfo.h"
#include "SystemZRegisterInfo.h"
#include "SystemZSubtarget.h"
+#include "SystemZSelectionDAGInfo.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/Target/TargetFrameLowering.h"
#include "llvm/Target/TargetMachine.h"
-#include "llvm/Target/TargetSelectionDAGInfo.h"
namespace llvm {
@@ -32,7 +32,7 @@ class SystemZTargetMachine : public LLVMTargetMachine {
const DataLayout DL;
SystemZInstrInfo InstrInfo;
SystemZTargetLowering TLInfo;
- TargetSelectionDAGInfo TSInfo;
+ SystemZSelectionDAGInfo TSInfo;
SystemZFrameLowering FrameLowering;
public: