lib/gcc_personality_v0: Remove an unnecessary include.

llvm-svn: 144753
This commit is contained in:
Daniel Dunbar 2011-11-16 01:19:29 +00:00
parent 5ed39314ce
commit 490a270f18
1 changed files with 1 additions and 3 deletions

View File

@ -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;