forked from OSchip/llvm-project
lib/gcc_personality_v0: Remove an unnecessary include.
llvm-svn: 144753
This commit is contained in:
parent
5ed39314ce
commit
490a270f18
|
|
@ -9,8 +9,6 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "int_lib.h"
|
||||
|
||||
/*
|
||||
|
|
@ -200,7 +198,7 @@ _Unwind_Reason_Code __gcc_personality_v0(int version, _Unwind_Action actions,
|
|||
|
||||
/* There is nothing to do if there is no LSDA for this frame. */
|
||||
const uint8_t* lsda = _Unwind_GetLanguageSpecificData(context);
|
||||
if ( lsda == NULL )
|
||||
if ( lsda == (uint8_t*) 0 )
|
||||
return _URC_CONTINUE_UNWIND;
|
||||
|
||||
uintptr_t pc = _Unwind_GetIP(context)-1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue