mirror of https://github.com/acidanthera/audk.git
edk2/EdkCompatibilityPkg/Foundation/Include/(Ia32|X64)/EfiBind.h:
Merge from MdePkg/Include/(Ia32|x64)/ProcessorBind.h for GCC support. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5293 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ab4eb9640e
commit
297c148b7a
|
@ -295,7 +295,12 @@ typedef int32_t intn_t;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// For symbol name in GNU assembly code, an extra "_" is necessary
|
||||||
|
//
|
||||||
|
#if __GNUC__
|
||||||
|
#define ASM_PFX(name) _##name
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -248,7 +248,12 @@ typedef int64_t intn_t;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// For symbol name in GNU assembly code, an extra "_" is necessary
|
||||||
|
//
|
||||||
|
#if __GNUC__
|
||||||
|
#define ASM_PFX(name) _##name
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue