diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-10-20 15:57:13 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-10-20 16:28:42 -0700 |
commit | 89a8d817f0c2951ec305c286a526205d06bf9221 (patch) | |
tree | 5295cab951600148bd83f1cae0ae5250816dc257 /libraries/integer-gmp/cbits | |
parent | 0202b7cefbaf76dc53d43562dbc84a52debe2eb2 (diff) | |
download | haskell-89a8d817f0c2951ec305c286a526205d06bf9221.tar.gz |
Revert "Rename _closure to _static_closure, apply naming consistently."
This reverts commit 35672072b4091d6f0031417bc160c568f22d0469.
Conflicts:
compiler/main/DriverPipeline.hs
Diffstat (limited to 'libraries/integer-gmp/cbits')
-rw-r--r-- | libraries/integer-gmp/cbits/gmp-wrappers.cmm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/integer-gmp/cbits/gmp-wrappers.cmm b/libraries/integer-gmp/cbits/gmp-wrappers.cmm index f28520a35e..a5652511bd 100644 --- a/libraries/integer-gmp/cbits/gmp-wrappers.cmm +++ b/libraries/integer-gmp/cbits/gmp-wrappers.cmm @@ -74,7 +74,7 @@ import "integer-gmp" __gmpz_export; import "integer-gmp" integer_cbits_decodeDouble; -import "rts" stg_INTLIKE_static_closure; +import "rts" stg_INTLIKE_closure; /* ----------------------------------------------------------------------------- Arbitrary-precision Integer operations. @@ -94,7 +94,7 @@ import "rts" stg_INTLIKE_static_closure; dummy value is needed, the 'ByteArray#' is not supposed to be accessed anyway, this is should be a tolerable hack. */ -#define DUMMY_BYTE_ARR (stg_INTLIKE_static_closure+1) +#define DUMMY_BYTE_ARR (stg_INTLIKE_closure+1) /* set mpz_t from Int#/ByteArray# */ #define MP_INT_SET_FROM_BA(mp_ptr,i,ba) \ |