From: Eric Christopher Date: Thu, 12 Jun 2014 22:38:20 +0000 (+0000) Subject: Remove an extraneous this-> to access the subtarget. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=cb7dc25df1fe197d80756e1ef5cd7d5af8ac5c17;hp=f6b9efa7db888e84f197325712967eb884255b82 Remove an extraneous this-> to access the subtarget. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210849 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp index acffcf7cef4..1db9070267a 100644 --- a/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/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;