git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2639
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2003-05-22 Bernhard Held <bernhard@bernhardheld.de>
+
+ * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
+
2003-05-21 <johan@balder>
* src/SDCCglue.c (printIval): fixed bug #739934
if(pcc )
return pic16_get_op(pcc->pcop,NULL,0);
-
- return ("ERROR Null: "__FUNCTION__);
+
+ /* gcc 3.2: warning: concatenation of string literals with __FUNCTION__ is deprecated
+ * return ("ERROR Null: "__FUNCTION__);
+ */
+ return ("ERROR Null: pic16_get_op_from_instruction");
}