summaryrefslogtreecommitdiff
path: root/lib/CodeGen/DwarfWriter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2007-01-03 13:36:40 +0000
committerJim Laskey <jlaskey@mac.com>2007-01-03 13:36:40 +0000
commit1e3a5772d8efa207aa6f03888164ba57236ed705 (patch)
tree8cb6db0af3349e0d0badb3ab1e492cfb5f5f8953 /lib/CodeGen/DwarfWriter.cpp
parent317848f4a11f7fe55afdd6d90ded8444069b56fb (diff)
downloadllvm-1e3a5772d8efa207aa6f03888164ba57236ed705.tar.gz
llvm-1e3a5772d8efa207aa6f03888164ba57236ed705.tar.bz2
llvm-1e3a5772d8efa207aa6f03888164ba57236ed705.tar.xz
Silence warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32834 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 3690f37620..a03274c76a 100644
--- a/lib/CodeGen/DwarfWriter.cpp
+++ b/lib/CodeGen/DwarfWriter.cpp
@@ -2429,7 +2429,7 @@ private:
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");