diff options
author | Magnus Henoch <[email protected]> | 2015-05-25 21:22:46 +0100 |
---|---|---|
committer | Magnus Henoch <[email protected]> | 2015-05-27 19:32:55 +0100 |
commit | 7f3a057a179af274f24667ecbb7b8f3d40b667b6 (patch) | |
tree | b976728023ef3e2a276d2323f972e811985d49aa /erts/emulator/hipe/hipe_mkliterals.c | |
parent | 46a50404b4d0eed5594cf468a4a61cfff9aec84f (diff) | |
download | otp-7f3a057a179af274f24667ecbb7b8f3d40b667b6.tar.gz otp-7f3a057a179af274f24667ecbb7b8f3d40b667b6.tar.bz2 otp-7f3a057a179af274f24667ecbb7b8f3d40b667b6.zip |
Change hipe_bifs:system_crc/1 to hipe_bifs:system_crc/0
The macro HIPE_SYSTEM_CRC used to contain a hidden cookie from the VM
that generated hipe_literals.hrl. This means that BEAM files containing
that macro would be tied to a particular version of the VM.
Change hipe_bifs:system_crc such that it doesn't require a hidden cookie
to return the desired value.
Diffstat (limited to 'erts/emulator/hipe/hipe_mkliterals.c')
-rw-r--r-- | erts/emulator/hipe/hipe_mkliterals.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/erts/emulator/hipe/hipe_mkliterals.c b/erts/emulator/hipe/hipe_mkliterals.c index ed355ce264..49e8d39360 100644 --- a/erts/emulator/hipe/hipe_mkliterals.c +++ b/erts/emulator/hipe/hipe_mkliterals.c @@ -648,8 +648,7 @@ static int do_e(FILE *fp, const char* this_exe) fprintf(fp, "-define(HIPE_SYSTEM_CRC, %u).\n", system_crc); } else { - fprintf(fp, "-define(HIPE_SYSTEM_CRC, hipe_bifs:system_crc(%u)).\n", - literals_crc); + fprintf(fp, "-define(HIPE_SYSTEM_CRC, hipe_bifs:system_crc()).\n"); } return 0; } |