aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFrameInfo.h
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2007-04-27 14:43:05 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2007-04-27 14:43:05 +0000
commitb35417c607afc5d12f2facedf19afd0d68669f64 (patch)
tree11666c5c622a2a46ad0e0262540109fbe97408bb /include/llvm/CodeGen/MachineFrameInfo.h
parent64f4fa5e0eb505eec3a72041bec6b3a7f7739ded (diff)
Fix prolific source of 'possible loss of data' warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineFrameInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h
index a4c9620a04..be481f7ab8 100644
--- a/include/llvm/CodeGen/MachineFrameInfo.h
+++ b/include/llvm/CodeGen/MachineFrameInfo.h
@@ -156,7 +156,7 @@ class MachineFrameInfo {
public:
MachineFrameInfo() {
- NumFixedObjects = StackSize = OffsetAdjustment = MaxAlignment = 0;
+ StackSize = NumFixedObjects = OffsetAdjustment = MaxAlignment = 0;
HasVarSizedObjects = false;
HasCalls = false;
MaxCallFrameSize = 0;