diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-11-17 01:25:34 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-11-17 01:25:34 +0000 |
commit | b6ee58980525321bc5724ecc9a71dbc7beccf14e (patch) | |
tree | b28485341baf2e998f784ea5fd270f27314822f4 | |
parent | 5d73d92f560b079f41f62e91d15ddc1fda897867 (diff) | |
download | edk2-platforms-b6ee58980525321bc5724ecc9a71dbc7beccf14e.tar.xz |
Removed unnecessary GLOBAL_REMOVE_IF_UNREFERENCED.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11069 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgent/SmmDebugAgentLib.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgent/SmmDebugAgentLib.c b/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgent/SmmDebugAgentLib.c index fa42311659..f75759e815 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgent/SmmDebugAgentLib.c +++ b/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgent/SmmDebugAgentLib.c @@ -15,12 +15,9 @@ #include "SmmDebugAgentLib.h"
DEBUG_AGENT_MAILBOX *mMailboxPointer = NULL;
-
-GLOBAL_REMOVE_IF_UNREFERENCED DEBUG_AGENT_MAILBOX mLocalMailbox;
-
-GLOBAL_REMOVE_IF_UNREFERENCED UINTN mSavedDebugRegisters[6];
-
-CONST BOOLEAN MultiProcessorDebugSupport = FALSE;
+DEBUG_AGENT_MAILBOX mLocalMailbox;
+UINTN mSavedDebugRegisters[6];
+CONST BOOLEAN MultiProcessorDebugSupport = FALSE;
/**
|