You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 */