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:
1e9ddc2
)
Changing long to int for consistency.
author
Aaron Ballman
<aaron@aaronballman.com>
Thu, 4 Jul 2013 17:05:21 +0000
(17:05 +0000)
committer
Aaron Ballman
<aaron@aaronballman.com>
Thu, 4 Jul 2013 17:05:21 +0000
(17:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185656
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/DataTypes.h.in
patch
|
blob
|
history
diff --git
a/include/llvm/Support/DataTypes.h.in
b/include/llvm/Support/DataTypes.h.in
index d6c38169504e69398c808c420c0fd555dad7dd3d..dca304e7909bcc3de7c928de3a369e0123002670 100644
(file)
--- a/
include/llvm/Support/DataTypes.h.in
+++ b/
include/llvm/Support/DataTypes.h.in
@@
-101,7
+101,7
@@
typedef unsigned char uint8_t;
#if defined(_WIN64)
typedef signed __int64 ssize_t;
#else
- typedef signed
long
ssize_t;
+ typedef signed
int
ssize_t;
#endif
#ifndef INT8_MAX