mirror of https://github.com/acidanthera/audk.git
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:
parent
28dec501f4
commit
72c11e3aaf
|
@ -29,11 +29,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
//
|
//
|
||||||
// The alignment of variable's start offset.
|
// 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)
|
#if defined (MDE_CPU_IPF)
|
||||||
#define ALIGNMENT 8
|
#define ALIGNMENT 8
|
||||||
#else
|
#else
|
||||||
#define ALIGNMENT 2
|
#define ALIGNMENT 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue