These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / roms / ipxe / src / arch / x86_64 / include / bits / compiler.h
1 #ifndef _BITS_COMPILER_H
2 #define _BITS_COMPILER_H
3
4 /** Dummy relocation type */
5 #define RELOC_TYPE_NONE R_X86_64_NONE
6
7 #ifndef ASSEMBLY
8
9 /** Declare a function with standard calling conventions */
10 #define __asmcall __attribute__ (( regparm(0) ))
11
12 /** Declare a function with libgcc implicit linkage */
13 #define __libgcc
14
15 #endif /* ASSEMBLY */
16
17 #endif /* _BITS_COMPILER_H */