[llvm-commits] CVS: llvm/lib/CodeGen/DwarfWriter.cpp

Jim Laskey jlaskey at apple.com
Wed Jan 3 05:36:55 PST 2007



Changes in directory llvm/lib/CodeGen:

DwarfWriter.cpp updated: 1.109 -> 1.110
---
Log message:

Silence 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.109 llvm/lib/CodeGen/DwarfWriter.cpp:1.110
--- llvm/lib/CodeGen/DwarfWriter.cpp:1.109	Fri Dec 22 14:03:42 2006
+++ llvm/lib/CodeGen/DwarfWriter.cpp	Wed Jan  3 07:36:40 2007
@@ -2429,7 +2429,7 @@
     EOL("Length of Common Information Entry");
 
     EmitLabel("frame_common_begin", 0);
-    EmitInt32(DW_CIE_ID); EOL("CIE Identifier Tag");
+    EmitInt32((int)DW_CIE_ID); EOL("CIE Identifier Tag");
     EmitInt8(DW_CIE_VERSION); EOL("CIE Version");
     EmitString("");  EOL("CIE Augmentation");
     EmitULEB128Bytes(1); EOL("CIE Code Alignment Factor");






More information about the llvm-commits mailing list