選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

compiler.h 373B

1234567891011121314151617
  1. #ifndef _BITS_COMPILER_H
  2. #define _BITS_COMPILER_H
  3. /** Dummy relocation type */
  4. #define RELOC_TYPE_NONE R_X86_64_NONE
  5. #ifndef ASSEMBLY
  6. /** Declare a function with standard calling conventions */
  7. #define __asmcall __attribute__ (( regparm(0) ))
  8. /** Declare a function with libgcc implicit linkage */
  9. #define __libgcc
  10. #endif /* ASSEMBLY */
  11. #endif /* _BITS_COMPILER_H */