mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 08:04:07 +02:00
Fix sync issue to make EbcLLCALLEX() function check the same value to ones that are used in EbcCreateThunks() to decide whether the input function is a thunk to EBC.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10297 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
efd82c5794
commit
21f7daf946
@ -559,11 +559,11 @@ EbcLLCALLEX (
|
|||||||
IsThunk = 0;
|
IsThunk = 0;
|
||||||
goto Action;
|
goto Action;
|
||||||
}
|
}
|
||||||
if (*((UINT8 *)FuncAddr + 10) != 0x48) {
|
if (*((UINT8 *)FuncAddr + 10) != 0x49) {
|
||||||
IsThunk = 0;
|
IsThunk = 0;
|
||||||
goto Action;
|
goto Action;
|
||||||
}
|
}
|
||||||
if (*((UINT8 *)FuncAddr + 11) != 0xB8) {
|
if (*((UINT8 *)FuncAddr + 11) != 0xBA) {
|
||||||
IsThunk = 0;
|
IsThunk = 0;
|
||||||
goto Action;
|
goto Action;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user