mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-07 19:45:07 +02:00
Fixd EDKII r2594 build broken issue - MdePkg build failed with ICC.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2595 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
efdbc5199e
commit
c392941764
@ -32,7 +32,7 @@ InternalIpfDelay (
|
||||
IN INT64 Delay
|
||||
)
|
||||
{
|
||||
INT64 Ticks;
|
||||
UINT64 Ticks;
|
||||
|
||||
//
|
||||
// The target timer count is calculated here
|
||||
@ -44,7 +44,7 @@ InternalIpfDelay (
|
||||
// Delay > 2^63 could not be handled by this function
|
||||
// Timer wrap-arounds are handled correctly by this function
|
||||
//
|
||||
while (Ticks - AsmReadItc () >= 0);
|
||||
while (Ticks >= AsmReadItc());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user