[llvm] r210849 - Remove an extraneous this-> to access the subtarget.

Eric Christopher echristo at gmail.com
Thu Jun 12 15:38:20 PDT 2014


Author: echristo
Date: Thu Jun 12 17:38:20 2014
New Revision: 210849

URL: http://llvm.org/viewvc/llvm-project?rev=210849&view=rev
Log:
Remove an extraneous this-> to access the subtarget.

Modified:
    llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp

Modified: llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp?rev=210849&r1=210848&r2=210849&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp Thu Jun 12 17:38:20 2014
@@ -8913,7 +8913,7 @@ EVT PPCTargetLowering::getOptimalMemOpTy
                                            bool IsMemset, bool ZeroMemset,
                                            bool MemcpyStrSrc,
                                            MachineFunction &MF) const {
-  if (this->Subtarget.isPPC64()) {
+  if (Subtarget.isPPC64()) {
     return MVT::i64;
   } else {
     return MVT::i32;





More information about the llvm-commits mailing list