git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2167
4a8a32a2-be11-0410-ad9d-
d568d2c75423
* as/z80/string.h: removed for gcc 3.2
* support/makebin/makebin.c: #include <string.h> for gcc 3.2
+ * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
2003-01-19 Bernhard Held <bernhard@bernhardheld.de>
if(pcc )
return get_op(pcc->pcop,NULL,0);
+ /* gcc 3.2: warning: concatenation of string literals with __FUNCTION__ is deprecated
return ("ERROR Null: "__FUNCTION__);
+ */
+ return ("ERROR Null: get_op_from_instruction");
}