tests: Fix 135 generated assembly on DragonFly BSD

Which uses a modern version of GCC and Clang, which supports gas.

Tested with x86_64, but I assume that x86 and arm have the same problem.
pull/2803/head
Dylan Baker 7 years ago
parent 4620bdd8b4
commit ae4bd83493
  1. 4
      test cases/common/135 generated assembly/square-arm.S.in
  2. 4
      test cases/common/135 generated assembly/square-x86.S.in
  3. 4
      test cases/common/135 generated assembly/square-x86_64.S.in

@ -2,8 +2,8 @@
.text .text
.globl SYMBOL_NAME(square_unsigned) .globl SYMBOL_NAME(square_unsigned)
/* Only supported on Linux with GAS */ /* Only supported with GAS */
# ifdef __linux__ # if defined(__linux__) || defined(__DragonFly__)
.type square_unsigned,%function .type square_unsigned,%function
#endif #endif

@ -21,8 +21,8 @@ END
.text .text
.globl SYMBOL_NAME(square_unsigned) .globl SYMBOL_NAME(square_unsigned)
/* Only supported on Linux with GAS */ /* Only supported with GAS */
# ifdef __linux__ # if defined(__linux__) || defined(__DragonFLy__)
.type square_unsigned,@function .type square_unsigned,@function
# endif # endif

@ -18,8 +18,8 @@ END
.text .text
.globl SYMBOL_NAME(square_unsigned) .globl SYMBOL_NAME(square_unsigned)
/* Only supported on Linux with GAS */ /* Only supported with GAS */
# ifdef __linux__ # if defined(__linux__) || defined(__DragonFly__)
.type square_unsigned,@function .type square_unsigned,@function
# endif # endif

Loading…
Cancel
Save