Change the alignment of variable from 2 back to 1 for compability of test case.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2548 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2007-04-09 03:36:37 +00:00
parent 28dec501f4
commit 72c11e3aaf
1 changed files with 3 additions and 1 deletions

View File

@ -29,11 +29,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
//
// The alignment of variable's start offset.
// For IA32/X64 architecture, the alignment is set to 1, and
// 2 is for IPF archtecture.
//
#if defined (MDE_CPU_IPF)
#define ALIGNMENT 8
#else
#define ALIGNMENT 2
#define ALIGNMENT 1
#endif
//