[llvm-commits] CVS: llvm/lib/Target/CBackend/Writer.cpp
Reid Spencer
reid at x10sys.com
Wed May 24 12:21:28 PDT 2006
Changes in directory llvm/lib/Target/CBackend:
Writer.cpp updated: 1.261 -> 1.262
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Minor tweaks in public headers and a few .cpp files so that LLVM can build
successfully with -pedantic and projects using LLVM with -pedantic don't
get warnings from LLVM. There's still more -pedantic warnings to fix.
---
Diffs of the changes: (+1 -1)
Writer.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/CBackend/Writer.cpp
diff -u llvm/lib/Target/CBackend/Writer.cpp:1.261 llvm/lib/Target/CBackend/Writer.cpp:1.262
--- llvm/lib/Target/CBackend/Writer.cpp:1.261 Tue May 23 18:39:48 2006
+++ llvm/lib/Target/CBackend/Writer.cpp Wed May 24 14:21:12 2006
@@ -685,7 +685,7 @@
char Buffer[100];
uint64_t ll = DoubleToBits(FPC->getValue());
- sprintf(Buffer, "0x%llx", (unsigned long long)ll);
+ sprintf(Buffer, "0x%llx", uint64_t(ll));
std::string Num(&Buffer[0], &Buffer[6]);
unsigned long Val = strtoul(Num.c_str(), 0, 16);
More information about the llvm-commits
mailing list