[Lldb-commits] [lldb] r134492 - /lldb/trunk/source/Core/FormatManager.cpp
Enrico Granata
granata.enrico at gmail.com
Wed Jul 6 08:56:06 PDT 2011
Author: enrico
Date: Wed Jul 6 10:56:06 2011
New Revision: 134492
URL: http://llvm.org/viewvc/llvm-project?rev=134492&view=rev
Log:
Fixed some format names
Modified:
lldb/trunk/source/Core/FormatManager.cpp
Modified: lldb/trunk/source/Core/FormatManager.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/FormatManager.cpp?rev=134492&r1=134491&r2=134492&view=diff
==============================================================================
--- lldb/trunk/source/Core/FormatManager.cpp (original)
+++ lldb/trunk/source/Core/FormatManager.cpp Wed Jul 6 10:56:06 2011
@@ -52,10 +52,10 @@
{ eFormatVectorOfUInt8 , '\0' , "uint8_t[]" },
{ eFormatVectorOfSInt16 , '\0' , "int16_t[]" },
{ eFormatVectorOfUInt16 , '\0' , "uint16_t[]" },
- { eFormatVectorOfSInt32 , '\0' , "int16_t[]" },
- { eFormatVectorOfUInt32 , '\0' , "uint16_t[]" },
- { eFormatVectorOfSInt64 , '\0' , "int16_t[]" },
- { eFormatVectorOfUInt64 , '\0' , "uint16_t[]" },
+ { eFormatVectorOfSInt32 , '\0' , "int32_t[]" },
+ { eFormatVectorOfUInt32 , '\0' , "uint32_t[]" },
+ { eFormatVectorOfSInt64 , '\0' , "int64_t[]" },
+ { eFormatVectorOfUInt64 , '\0' , "uint64_t[]" },
{ eFormatVectorOfFloat32, '\0' , "float32[]" },
{ eFormatVectorOfFloat64, '\0' , "float64[]" },
{ eFormatVectorOfUInt128, '\0' , "uint128_t[]" },
More information about the lldb-commits
mailing list