compiler.h 550 B

12345678910111213141516
  1. #ifndef __ASM_ARM_COMPILER_H
  2. #define __ASM_ARM_COMPILER_H
  3. /*
  4. * This is used to ensure the compiler did actually allocate the register we
  5. * asked it for some inline assembly sequences. Apparently we can't trust
  6. * the compiler from one version to another so a bit of paranoia won't hurt.
  7. * This string is meant to be concatenated with the inline asm string and
  8. * will cause compilation to stop on mismatch.
  9. * (for details, see gcc PR 15089)
  10. */
  11. #define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
  12. #endif /* __ASM_ARM_COMPILER_H */