Changes in directory llvm/lib/CodeGen:

DwarfWriter.cpp updated: 1.147 -> 1.148
---
Log message:

Silence a warning.


---
Diffs of the changes:  (+1 -1)

 DwarfWriter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/DwarfWriter.cpp
diff -u llvm/lib/CodeGen/DwarfWriter.cpp:1.147 
llvm/lib/CodeGen/DwarfWriter.cpp:1.148
--- llvm/lib/CodeGen/DwarfWriter.cpp:1.147      Mon May 21 13:50:28 2007
+++ llvm/lib/CodeGen/DwarfWriter.cpp    Tue May 22 13:13:40 2007
@@ -2996,7 +2996,7 @@
 
     // 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];



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to