summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-06-12 22:38:20 +0000
committerEric Christopher <echristo@gmail.com>2014-06-12 22:38:20 +0000
commitd90a8746dfc1dd19775ae6e1efef6b3242dc6553 (patch)
tree09f9f328ac7d0bb03415b44ffaa64061fad1be5c /llvm/lib/Target/PowerPC
parentb1aaebecb1e974a8387cb55ac0f738d7e6908be8 (diff)
downloadbcm5719-llvm-d90a8746dfc1dd19775ae6e1efef6b3242dc6553.tar.gz
bcm5719-llvm-d90a8746dfc1dd19775ae6e1efef6b3242dc6553.zip
Remove an extraneous this-> to access the subtarget.
llvm-svn: 210849
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r--llvm/lib/Target/PowerPC/PPCISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
index acffcf7cef4..1db9070267a 100644
--- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -8913,7 +8913,7 @@ EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
bool IsMemset, bool ZeroMemset,
bool MemcpyStrSrc,
MachineFunction &MF) const {
- if (this->Subtarget.isPPC64()) {
+ if (Subtarget.isPPC64()) {
return MVT::i64;
} else {
return MVT::i32;
OpenPOWER on IntegriCloud