diff options
author | Dan Gohman <gohman@apple.com> | 2010-03-01 17:56:46 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-03-01 17:56:46 +0000 |
commit | b0e07d53c1b5e764e3eb2019be840c58f624cf79 (patch) | |
tree | c001fb4512c31787794fa05f90288145dc0ca1e1 /llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h | |
parent | 904d34c90f828496eb32e4e9372776b792c1538a (diff) | |
download | bcm5719-llvm-b0e07d53c1b5e764e3eb2019be840c58f624cf79.tar.gz bcm5719-llvm-b0e07d53c1b5e764e3eb2019be840c58f624cf79.zip |
Add explicit keywords.
llvm-svn: 97460
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h b/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h index e47d41962ea..fd6e330344b 100644 --- a/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h +++ b/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h @@ -33,7 +33,8 @@ class SystemZMachineFunctionInfo : public MachineFunctionInfo { public: SystemZMachineFunctionInfo() : CalleeSavedFrameSize(0) {} - SystemZMachineFunctionInfo(MachineFunction &MF) : CalleeSavedFrameSize(0) {} + explicit SystemZMachineFunctionInfo(MachineFunction &MF) + : CalleeSavedFrameSize(0) {} unsigned getCalleeSavedFrameSize() const { return CalleeSavedFrameSize; } void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } |