View | Details | Raw Unified
Collapse All | Expand All

(-) configure.in (-12 / +12 lines)
 Lines 319-331    Link Here 
[AC_TRY_RUN([#include <stdio.h>
[AC_TRY_RUN([#include <stdio.h>
int test() {
int test() {
#if defined(__GNUC__)
#if defined(__GNUC__)
  __asm__ __volatile__ ("
  __asm__ __volatile__ (
  .align 4
  ".align 4\n"
mfx_a1:
"mfx_a1:\n"
  .byte 0
  ".byte 0\n"
  .align 4
  ".align 4\n"
mfx_a2:
"mfx_a2:\n"
  ");
  );
#endif
#endif
  return 0;
  return 0;
}
}
 Lines 363-373    Link Here 
#endif
#endif
  int mfx_asm_func();
  int mfx_asm_func();
  static void test() {
  static void test() {
    __asm__ __volatile__("
    __asm__ __volatile__(
    .globl mfx_asm_func
    ".globl mfx_asm_func\n"
    mfx_asm_func:
    "mfx_asm_func:\n"
      .byte 0
      ".byte 0\n"
    ");
    );
  }
  }
], [
], [
  return mfx_asm_func();
  return mfx_asm_func();