From: Zhi-Gang Liu Date: Wed, 15 Apr 2015 02:16:37 +0000 (+0000) Subject: Removed "extern" X-Git-Tag: svn/VALGRIND_3_11_0^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bad67a067162fee595940db378ec3adf39b76aa1;p=thirdparty%2Fvalgrind.git Removed "extern" Delete extern in front of function TILEGXInstr *TILEGXInstr_Acas(.) in host_tilegx_defs.c. By: Zhi-Gang Liu git-svn-id: svn://svn.valgrind.org/vex/trunk@3132 --- diff --git a/VEX/priv/host_tilegx_defs.c b/VEX/priv/host_tilegx_defs.c index d7eea6c747..92ca2c7c54 100644 --- a/VEX/priv/host_tilegx_defs.c +++ b/VEX/priv/host_tilegx_defs.c @@ -765,8 +765,8 @@ TILEGXInstr *TILEGXInstr_Bf ( TILEGXBfOp op, HReg dst, HReg src, return i; } -extern TILEGXInstr *TILEGXInstr_Acas ( TILEGXAcasOp op, HReg old, - HReg addr, HReg exp, HReg new, UInt sz ) +TILEGXInstr *TILEGXInstr_Acas ( TILEGXAcasOp op, HReg old, + HReg addr, HReg exp, HReg new, UInt sz ) { TILEGXInstr *i = LibVEX_Alloc(sizeof(TILEGXInstr)); i->tag = GXin_Acas;