diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-03 01:55:47 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-03 01:55:47 +0000 |
commit | 03e7d834d54628147edcf545ca1a3ce790b9b2f7 (patch) | |
tree | 957e66071b2ca02f50f4fabc006ee98d4d387b24 /include/llvm/CodeGen/MachineFrameInfo.h | |
parent | 92faff2e4cd627ff980be6bd7c91e2f45eb48154 (diff) |
Add an explicit keyword.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index 4190bcd9a3..a6b91441fa 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -178,7 +178,7 @@ class MachineFrameInfo { /// const TargetFrameInfo &TFI; public: - MachineFrameInfo(const TargetFrameInfo &tfi) : TFI(tfi) { + explicit MachineFrameInfo(const TargetFrameInfo &tfi) : TFI(tfi) { StackSize = NumFixedObjects = OffsetAdjustment = MaxAlignment = 0; HasVarSizedObjects = false; FrameAddressTaken = false; |