diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-09 06:30:03 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-09 06:30:03 +0000 |
commit | dc2e539a344115537c1d3883ba96eaade345827b (patch) | |
tree | c80b31b679e8f5700c3c3ae78557aeaad7496902 /EdkCompatibilityPkg/Foundation | |
parent | f70338800713760b1f10e3642c17a25d13225e44 (diff) | |
download | edk2-dc2e539a344115537c1d3883ba96eaade345827b.zip edk2-dc2e539a344115537c1d3883ba96eaade345827b.tar.gz edk2-dc2e539a344115537c1d3883ba96eaade345827b.tar.bz2 |
Assert() break point default is DEADLOOP().
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5188 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/Debug.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/Debug.c b/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/Debug.c index 87888e7..9824cd8 100644 --- a/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/Debug.c +++ b/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/Debug.c @@ -77,14 +77,7 @@ Returns: //
// Put break point in module that contained the error.
//
-#ifndef __GNUC__
- EFI_BREAKPOINT ();
-#else
- //
- // Bugbug: Need to fix a GNC style cpu break point
- //
EFI_DEADLOOP ();
-#endif
}
VOID
|