diff options
author | Eric Christopher <echristo@gmail.com> | 2015-03-11 22:24:37 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-03-11 22:24:37 +0000 |
commit | ec8cda56682f9d0b6590d05679afc9ef52a99e0a (patch) | |
tree | b675147618f00b0b4cb36b3169a525b12a508b4b /llvm/lib | |
parent | cd632dc486058312eb7a7bcf6181b76335adf65f (diff) | |
download | bcm5719-llvm-ec8cda56682f9d0b6590d05679afc9ef52a99e0a.tar.gz bcm5719-llvm-ec8cda56682f9d0b6590d05679afc9ef52a99e0a.zip |
One more getCalleeSavedRegs prototype with nullptr.
llvm-svn: 231977
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCRegisterInfo.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCRegisterInfo.h b/llvm/lib/Target/PowerPC/PPCRegisterInfo.h index aca9bdc009d..a313f7b5d4d 100644 --- a/llvm/lib/Target/PowerPC/PPCRegisterInfo.h +++ b/llvm/lib/Target/PowerPC/PPCRegisterInfo.h @@ -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; |