diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-31 08:52:04 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-31 08:52:04 +0000 |
commit | b48638214f30dd0d4fc0a39e94e7cd76f9043fd8 (patch) | |
tree | 3a994846ddd26c20923d4291669d472d1372bad1 /MdePkg/Library/BaseLib | |
parent | 81d5a316addeeb85f84e271a4ef35a1759dcafac (diff) | |
download | edk2-platforms-b48638214f30dd0d4fc0a39e94e7cd76f9043fd8.tar.xz |
Changed SwitchStack() to _SwitchStack()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@346 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib')
-rw-r--r-- | MdePkg/Library/BaseLib/Ipf/SwitchStack.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ipf/SwitchStack.s b/MdePkg/Library/BaseLib/Ipf/SwitchStack.s index 4dd17f533e..16358add22 100644 --- a/MdePkg/Library/BaseLib/Ipf/SwitchStack.s +++ b/MdePkg/Library/BaseLib/Ipf/SwitchStack.s @@ -66,7 +66,7 @@ //VOID
-//SwitchStack (
+//_SwitchStack (
// VOID *ContinuationFunction,
// UINTN Parameter,
// UINTN NewTopOfStack,
@@ -85,7 +85,7 @@ //
//--*/
-PROCEDURE_ENTRY(SwitchStack)
+PROCEDURE_ENTRY(_SwitchStack)
mov r16 = -0x10;;
and r16 = r34, r16;; // get new stack value in R16, 0 the last nibble.
@@ -117,6 +117,6 @@ PROCEDURE_ENTRY(SwitchStack) ;;
br.call.sptk.few b0=b6;; // Call the continuation function
;;
-PROCEDURE_EXIT(SwitchStack)
+PROCEDURE_EXIT(_SwitchStack)
|