projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d17722
)
DataTypes.h.cmake: Define PRIx32 &c for !HAVE_INTTYPES_H hosts.
author
NAKAMURA Takumi
<geek4civic@gmail.com>
Fri, 8 Aug 2014 17:00:47 +0000
(17:00 +0000)
committer
NAKAMURA Takumi
<geek4civic@gmail.com>
Fri, 8 Aug 2014 17:00:47 +0000
(17:00 +0000)
I supposed PRIx32 might be unused in the tree.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215225
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/DataTypes.h.cmake
patch
|
blob
|
history
diff --git
a/include/llvm/Support/DataTypes.h.cmake
b/include/llvm/Support/DataTypes.h.cmake
index 1f0c8eba5e118ba9e4985c80d1c5ac9d0387db7f..c0152451d95c362047d78f136aeb20c3f1b48283 100644
(file)
--- a/
include/llvm/Support/DataTypes.h.cmake
+++ b/
include/llvm/Support/DataTypes.h.cmake
@@
-101,6
+101,13
@@
typedef signed int ssize_t;
#define PRIu64 "I64u"
#define PRIx64 "I64x"
#define PRIX64 "I64X"
+
+#define PRId32 "d"
+#define PRIi32 "i"
+#define PRIo32 "o"
+#define PRIu32 "u"
+#define PRIx32 "x"
+#define PRIX32 "X"
#endif /* HAVE_INTTYPES_H */
#endif /* _MSC_VER */