Make gcc mandatory on OSX, since clang lacks certain GAS features

This commit is contained in:
Harshavardhana
2015-01-22 18:33:35 -08:00
parent 3a3d9989d1
commit 3d43305b1f
3 changed files with 7 additions and 6 deletions

View File

@@ -454,22 +454,18 @@ full_block:
crc_array:
i=128
.rept 128-1
#if !defined(__clang__)
.altmacro
LABEL crc_ %i
.noaltmacro
#endif
crc32q -i*8(block_0), crc_init
crc32q -i*8(block_1), crc1
crc32q -i*8(block_2), crc2
i=(i-1)
.endr
#if !defined(__clang__)
.altmacro
LABEL crc_ %i
.noaltmacro
#endif
crc32q -i*8(block_0), crc_init
crc32q -i*8(block_1), crc1
# SKIP crc32 -i*8(block_2), crc2 ; Don't do this one yet