[llvm] r231977 - One more getCalleeSavedRegs prototype with nullptr.

Eric Christopher echristo at gmail.com
Wed Mar 11 15:24:37 PDT 2015


Author: echristo
Date: Wed Mar 11 17:24:37 2015
New Revision: 231977

URL: http://llvm.org/viewvc/llvm-project?rev=231977&view=rev
Log:
One more getCalleeSavedRegs prototype with nullptr.

Modified:
    llvm/trunk/lib/Target/PowerPC/PPCRegisterInfo.h

Modified: llvm/trunk/lib/Target/PowerPC/PPCRegisterInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCRegisterInfo.h?rev=231977&r1=231976&r2=231977&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCRegisterInfo.h (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCRegisterInfo.h Wed Mar 11 17:24:37 2015
@@ -45,8 +45,7 @@ public:
                             const MachineFunction &MF) const override;
 
   /// Code Generation virtual methods...
-  const MCPhysReg *
-  getCalleeSavedRegs(const MachineFunction* MF =nullptr) const override;
+  const MCPhysReg *getCalleeSavedRegs(const MachineFunction *MF) const override;
   const uint32_t *getCallPreservedMask(CallingConv::ID CC) const override;
   const uint32_t *getNoPreservedMask() const;
 





More information about the llvm-commits mailing list