|
From: <sv...@va...> - 2012-03-25 16:17:26
|
florian 2012-03-25 17:17:18 +0100 (Sun, 25 Mar 2012)
New Revision: 2267
Log:
Remove prototype for non-existing function.
Fix vpanic call.
Modified files:
trunk/priv/host_s390_defs.c
trunk/priv/host_s390_defs.h
Modified: trunk/priv/host_s390_defs.h (+0 -2)
===================================================================
--- trunk/priv/host_s390_defs.h 2012-03-21 19:36:37 +00:00 (rev 2266)
+++ trunk/priv/host_s390_defs.h 2012-03-25 17:17:18 +01:00 (rev 2267)
@@ -459,8 +459,6 @@
s390_insn *s390_insn_mfence(void);
s390_insn *s390_insn_gzero(UChar size, UInt offset);
s390_insn *s390_insn_gadd(UChar size, UInt offset, UChar delta, ULong value);
-UInt s390_insn_emit(UChar *buf, Int nbuf, const s390_insn *insn,
- void *dispatch);
const HChar *s390_insn_as_string(const s390_insn *);
Modified: trunk/priv/host_s390_defs.c (+1 -1)
===================================================================
--- trunk/priv/host_s390_defs.c 2012-03-21 19:36:37 +00:00 (rev 2266)
+++ trunk/priv/host_s390_defs.c 2012-03-25 17:17:18 +01:00 (rev 2267)
@@ -7284,7 +7284,7 @@
break;
default:
- vpanic("s390_insn_emit");
+ vpanic("emit_S390Instr");
}
vassert(end - buf <= nbuf);
|