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
.globl SYMBOL_NAME(square_unsigned)
/* Only supported on Linux with GAS */
# ifdef __linux__
/* Only supported with GAS */
# if defined(__linux__) || defined(__DragonFly__)
.type square_unsigned,%function
#endif

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

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

Loading…
Cancel
Save