From 9cf72f593ddd22555811ee8d3e191386a1caea71 Mon Sep 17 00:00:00 2001 From: brian Date: Thu, 18 Mar 2004 14:49:46 -0800 Subject: [PATCH] tableswitch code darcs-hash:20040318224946-24bed-2e6e5ece8dbbf94f50269928751211786329b4ca.gz --- doc/nestedvm.ivme04.tex | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/nestedvm.ivme04.tex b/doc/nestedvm.ivme04.tex index 87be5a3..5511fcd 100644 --- a/doc/nestedvm.ivme04.tex +++ b/doc/nestedvm.ivme04.tex @@ -409,7 +409,11 @@ switch(pc&0xffffff00) { \begin{figure} {\footnotesize\begin{verbatim} -Brian, we're missing the code here... can you put it in? +switch(pc>>>8) { + case 0x1: run_100(); + case 0x2: run_200(); + case 0x3: run_300(); +} \end{verbatim}} \caption{\label{tableswitch} Code which {\it is} optimized into a tableswitch} \end{figure} -- 1.7.10.4