summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-03-01 17:56:46 +0000
committerDan Gohman <gohman@apple.com>2010-03-01 17:56:46 +0000
commitce931c65eee7c89cabb479dbd0a0e1bd9d034668 (patch)
tree5bc940a91cff639ba46139f07f97cdb4e4bacb88 /lib/Target/SystemZ/SystemZMachineFunctionInfo.h
parent7cbf5a803e58b844a537cbf63eb0364d01a842a1 (diff)
downloadllvm-ce931c65eee7c89cabb479dbd0a0e1bd9d034668.tar.gz
llvm-ce931c65eee7c89cabb479dbd0a0e1bd9d034668.tar.bz2
llvm-ce931c65eee7c89cabb479dbd0a0e1bd9d034668.tar.xz
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZMachineFunctionInfo.h')
-rw-r--r--lib/Target/SystemZ/SystemZMachineFunctionInfo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZMachineFunctionInfo.h b/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
index e47d41962e..fd6e330344 100644
--- a/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
+++ b/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; }