From 49771dd308505856126c84285a7acbdaf3400aa0 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 11 May 2014 12:24:11 +0000 Subject: * pack.c (swaps): Unused macro removed. (swapi): Ditto. (swapl): Ditto. (swapll): Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ pack.c | 32 -------------------------------- 2 files changed, 7 insertions(+), 32 deletions(-) diff --git a/ChangeLog b/ChangeLog index e271d8671c..1bada3b074 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Sun May 11 21:23:27 2014 Tanaka Akira + + * pack.c (swaps): Unused macro removed. + (swapi): Ditto. + (swapl): Ditto. + (swapll): Ditto. + Sun May 11 08:02:49 2014 Eric Wong * vm_core.h (rb_vm_t): list_head and counter for living_threads diff --git a/pack.c b/pack.c index 82ef4f1c71..aae9ceebfb 100644 --- a/pack.c +++ b/pack.c @@ -100,38 +100,6 @@ TOKEN_PASTE(swap,x)(xtype z) \ return r; \ } -#if SIZEOF_SHORT == 2 -# define swaps(x) swap16(x) -#elif SIZEOF_SHORT == 4 -# define swaps(x) swap32(x) -#else - define_swapx(s,short) -#endif - -#if SIZEOF_INT == 2 -# define swapi(x) swap16(x) -#elif SIZEOF_INT == 4 -# define swapi(x) swap32(x) -#else - define_swapx(i,int) -#endif - -#if SIZEOF_LONG == 4 -# define swapl(x) swap32(x) -#elif SIZEOF_LONG == 8 -# define swapl(x) swap64(x) -#else - define_swapx(l,long) -#endif - -#ifdef HAVE_LONG_LONG -# if SIZEOF_LONG_LONG == 8 -# define swapll(x) swap64(x) -# else - define_swapx(ll,LONG_LONG) -# endif -#endif - #if SIZEOF_FLOAT == 4 && defined(HAVE_INT32_T) # define swapf(x) swap32(x) # define FLOAT_SWAPPER uint32_t -- cgit v1.2.3