summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/X64
diff options
context:
space:
mode:
authorpkandel <pkandel@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-04 16:16:15 +0000
committerpkandel <pkandel@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-04 16:16:15 +0000
commit1a2f870c9babe077c2d3abea23b6e8e044778341 (patch)
treedb545c66ef72b32da3dbd2406b256c3430702af0 /MdePkg/Include/X64
parent7076244ef4005642712f32591abbd8188d6b6f40 (diff)
downloadedk2-1a2f870c9babe077c2d3abea23b6e8e044778341.tar.gz
edk2-1a2f870c9babe077c2d3abea23b6e8e044778341.tar.bz2
edk2-1a2f870c9babe077c2d3abea23b6e8e044778341.zip
Second set of changes based on a review of the code comments in the Include directory for typos, grammar issues, and language clarity.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8467 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/X64')
-rw-r--r--MdePkg/Include/X64/ProcessorBind.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/MdePkg/Include/X64/ProcessorBind.h b/MdePkg/Include/X64/ProcessorBind.h
index fd4a91922b..5ebc58d8c2 100644
--- a/MdePkg/Include/X64/ProcessorBind.h
+++ b/MdePkg/Include/X64/ProcessorBind.h
@@ -1,5 +1,5 @@
/** @file
- Processor or Compiler specific defines and types x64 (Intel(r) EM64T, AMD64).
+ Processor or Compiler specific defines and types x64 (Intel 64, AMD64).
Copyright (c) 2006 - 2009, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
@@ -397,19 +397,14 @@ typedef INT64 INTN;
#endif
//
-// Macros for GNU assembly code
+// For symbol name in GNU assembly code, an extra "_" is necessary
//
#if defined(__GNUC__)
#if defined(linux)
#define ASM_PFX(name) name
#else
#define ASM_PFX(name) _##name
- #endif
- ///
- /// For GNU assembly code, .global or .globl can declare global symbols.
- /// Define this macro to unify the usage.
- ///
- #define ASM_GLOBAL .globl
+ #endif
#endif
/**