Fix the prediction warnings in EBC.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5195 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2008-05-13 09:07:59 +00:00
parent 8e3bc754c5
commit 366219abde
5 changed files with 75 additions and 75 deletions

View File

@@ -769,7 +769,7 @@ EbcDebugSignalException (
// If it's a fatal exception, then flag it in the VM context in case an
// attached debugger tries to return from it.
//
if (ExceptionFlags & EXCEPTION_FLAG_FATAL) {
if ((ExceptionFlags & EXCEPTION_FLAG_FATAL) != 0) {
VmPtr->StopFlags |= STOPFLAG_APP_DONE;
}