diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-05 23:05:51 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-05 23:05:51 +0000 |
commit | d185a7a6299fc28c122c6cd171650d1d802ecec0 (patch) | |
tree | b38f74bee50eb8a11b0cddff11c451ca1b4ffff8 /llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h | |
parent | ea1c22133405262c0f16a002910c26e5671a7d6a (diff) | |
download | bcm5719-llvm-d185a7a6299fc28c122c6cd171650d1d802ecec0.tar.gz bcm5719-llvm-d185a7a6299fc28c122c6cd171650d1d802ecec0.zip |
Add explicit keywords.
llvm-svn: 72969
Diffstat (limited to 'llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h b/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h index b94d7e44cac..1d26ae3e667 100644 --- a/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h +++ b/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h @@ -28,7 +28,8 @@ class MSP430MachineFunctionInfo : public MachineFunctionInfo { public: MSP430MachineFunctionInfo() : CalleeSavedFrameSize(0) {} - MSP430MachineFunctionInfo(MachineFunction &MF) : CalleeSavedFrameSize(0) {} + explicit MSP430MachineFunctionInfo(MachineFunction &MF) + : CalleeSavedFrameSize(0) {} unsigned getCalleeSavedFrameSize() const { return CalleeSavedFrameSize; } void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } |