[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineFrameInfo.h
Jeff Cohen
jeffc at jolt-lang.org
Fri Apr 27 07:43:22 PDT 2007
Changes in directory llvm/include/llvm/CodeGen:
MachineFrameInfo.h updated: 1.26 -> 1.27
---
Log message:
Fix prolific source of 'possible loss of data' warnings.
---
Diffs of the changes: (+1 -1)
MachineFrameInfo.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/CodeGen/MachineFrameInfo.h
diff -u llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.26 llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.27
--- llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.26 Tue Apr 24 23:29:06 2007
+++ llvm/include/llvm/CodeGen/MachineFrameInfo.h Fri Apr 27 09:43:05 2007
@@ -156,7 +156,7 @@
public:
MachineFrameInfo() {
- NumFixedObjects = StackSize = OffsetAdjustment = MaxAlignment = 0;
+ StackSize = NumFixedObjects = OffsetAdjustment = MaxAlignment = 0;
HasVarSizedObjects = false;
HasCalls = false;
MaxCallFrameSize = 0;
More information about the llvm-commits
mailing list