[PATCH] D20051: Fix use-of-uninitialized-value of ARMMachineFunctionInfo
Weiming Zhao via llvm-commits
llvm-commits at lists.llvm.org
Sat May 7 22:11:00 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL268868: Fix use-of-uninitialized-value of ARMMachineFunctionInfo (authored by weimingz).
Changed prior to commit:
http://reviews.llvm.org/D20051?vs=56509&id=56512#toc
Repository:
rL LLVM
http://reviews.llvm.org/D20051
Files:
llvm/trunk/lib/Target/ARM/ARMMachineFunctionInfo.cpp
Index: llvm/trunk/lib/Target/ARM/ARMMachineFunctionInfo.cpp
===================================================================
--- llvm/trunk/lib/Target/ARM/ARMMachineFunctionInfo.cpp
+++ llvm/trunk/lib/Target/ARM/ARMMachineFunctionInfo.cpp
@@ -21,4 +21,4 @@
FramePtrSpillOffset(0), GPRCS1Offset(0), GPRCS2Offset(0), DPRCSOffset(0),
GPRCS1Size(0), GPRCS2Size(0), DPRCSSize(0),
PICLabelUId(0), VarArgsFrameIndex(0), HasITBlocks(false),
- IsSplitCSR(false) {}
+ ArgumentStackSize(0), IsSplitCSR(false) {}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20051.56512.patch
Type: text/x-patch
Size: 535 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160508/6ab5ef82/attachment.bin>
More information about the llvm-commits
mailing list