mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-24 06:04:52 +02:00
Added macro GLOBAL_OBJECT and GLOBAL_CONSTANT, and changed '.global' to '.globl' based on HP feedback
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4243 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
dfc4846489
commit
42a885c2f0
@ -43,7 +43,15 @@ name::
|
||||
|
||||
#define GLOBAL_FUNCTION(Function) \
|
||||
.##type Function, @function; \
|
||||
.##global Function
|
||||
.##globl Function
|
||||
|
||||
#define GLOBAL_OBJECT(Object) \
|
||||
.##type Object, @object; \
|
||||
.##globl Object
|
||||
|
||||
#define GLOBAL_CONSTANT(Constant) \
|
||||
.##type Constant, @notype; \
|
||||
.##globl Constant
|
||||
|
||||
#define INTERRUPT_HANDLER_BEGIN(name) \
|
||||
PROCEDURE_ENTRY(name##HandlerBegin) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user