The unified diff between revisions [9a6e8df1..] and [a81fe555..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'src/lsi/makeabi'

#
# old_revision [9a6e8df1d6b102f467702e274d53d90f9151e2c8]
# new_revision [a81fe5550c21fa983b4e344e07c29b9cecdf75ea]
#
# patch "src/lsi/makeabi"
#  from [af04da9852be189b121ae5a7e48a4664afc10c7d]
#    to [54d8bf7ee907e67849843b113a8c6f5039ec020b]
#
============================================================
--- src/lsi/makeabi	af04da9852be189b121ae5a7e48a4664afc10c7d
+++ src/lsi/makeabi	54d8bf7ee907e67849843b113a8c6f5039ec020b
@@ -37,6 +37,13 @@ do_function()
 	FNCOUNT=$((${FNCOUNT}+1))
 }
 
+do_function_v()
+{
+	echo "	vm_intfn_${ARG1}," >>${ABI}
+	echo "fndefint_v ${ARG1} ${FNCOUNT};" >>${HEADER}
+	FNCOUNT=$((${FNCOUNT}+1))
+}
+
 cat <<EOF >${ABI}
 /* abi.c */
 /* autogenerated - do not edit */
@@ -69,6 +76,8 @@ do
 	case "$TYPE" in
 		function) do_function
 			;;
+		function_v) do_function_v
+			;;
 	esac
 done <${INFILE}