diff options
author | David Allsopp <david.allsopp@metastack.com> | 2017-03-08 11:29:24 +0000 |
---|---|---|
committer | David Allsopp <david.allsopp@metastack.com> | 2017-05-16 19:48:37 +0100 |
commit | d526e7cce9ef568e8c4f197c2ca3897bc6eec053 (patch) | |
tree | 549697cdf88c38e0dff2560de7d0c070ab2c2b2d /byterun/ints.c | |
parent | f7f5b9487fb1e6179cd2eebd3d0a51a8f2d9ac64 (diff) | |
download | ocaml-d526e7cce9ef568e8c4f197c2ca3897bc6eec053.tar.gz |
Move INT64_LITERAL from byterun/ints.c to m.h
Diffstat (limited to 'byterun/ints.c')
-rw-r--r-- | byterun/ints.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/byterun/ints.c b/byterun/ints.c index c49f42f0ef..16326395f0 100644 --- a/byterun/ints.c +++ b/byterun/ints.c @@ -501,13 +501,6 @@ value caml_int64_direct_bswap(value v) { return caml_swap64(v); } #endif -/* Microsoft introduced the LL integer literal suffix in Visual C++ .NET 2003 */ -#if defined(_MSC_VER) && _MSC_VER < 1400 -#define INT64_LITERAL(s) s ## i64 -#else -#define INT64_LITERAL(s) s ## LL -#endif - CAMLprim value caml_int64_bswap(value v) { int64_t x = Int64_val(v); |