aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/DwarfWriter.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-05-22 18:13:40 +0000
committerOwen Anderson <resistor@mac.com>2007-05-22 18:13:40 +0000
commit2b77d3b09138cb1081f003042be55503d243d323 (patch)
tree7a815f344e607d341d168e160d64119155d39d02 /lib/CodeGen/DwarfWriter.cpp
parent7e07b30e8089c5250418e31484d574756200e20e (diff)
Silence a warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37288 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfWriter.cpp')
-rw-r--r--lib/CodeGen/DwarfWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp
index 7076190c3d..23ce4b2bf4 100644
--- a/lib/CodeGen/DwarfWriter.cpp
+++ b/lib/CodeGen/DwarfWriter.cpp
@@ -2996,7 +2996,7 @@ private:
// Look at each landing pad site to compute size. We need the size of each
// landing pad site info and the size of the landing pad's actions.
- signed FirstAction;
+ signed FirstAction = 0;
for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
const LandingPadInfo *LandingPad = LandingPads[i];