[llvm-commits] [llvm] r143802 - in /llvm/trunk/include/llvm/Support: DataTypes.h.cmake DataTypes.h.in

Benjamin Kramer benny.kra at googlemail.com
Sat Nov 5 02:45:18 PDT 2011


Author: d0k
Date: Sat Nov  5 04:45:17 2011
New Revision: 143802

URL: http://llvm.org/viewvc/llvm-project?rev=143802&view=rev
Log:
Fix pasto.

Modified:
    llvm/trunk/include/llvm/Support/DataTypes.h.cmake
    llvm/trunk/include/llvm/Support/DataTypes.h.in

Modified: llvm/trunk/include/llvm/Support/DataTypes.h.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/DataTypes.h.cmake?rev=143802&r1=143801&r2=143802&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/DataTypes.h.cmake (original)
+++ llvm/trunk/include/llvm/Support/DataTypes.h.cmake Sat Nov  5 04:45:17 2011
@@ -171,10 +171,10 @@
 # define PRId64 "I64d"
 #endif
 #ifndef PRIi64
-# define PRIu64 "I64i"
+# define PRIi64 "I64i"
 #endif
 #ifndef PRIo64
-# define PRIx64 "I64o"
+# define PRIo64 "I64o"
 #endif
 #ifndef PRIu64
 # define PRIu64 "I64u"

Modified: llvm/trunk/include/llvm/Support/DataTypes.h.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/DataTypes.h.in?rev=143802&r1=143801&r2=143802&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/DataTypes.h.in (original)
+++ llvm/trunk/include/llvm/Support/DataTypes.h.in Sat Nov  5 04:45:17 2011
@@ -171,10 +171,10 @@
 # define PRId64 "I64d"
 #endif
 #ifndef PRIi64
-# define PRIu64 "I64i"
+# define PRIi64 "I64i"
 #endif
 #ifndef PRIo64
-# define PRIx64 "I64o"
+# define PRIo64 "I64o"
 #endif
 #ifndef PRIu64
 # define PRIu64 "I64u"





More information about the llvm-commits mailing list