Suppression micro-optimisation du dispatch pour l'IA64 -- pose probleme avec gcc 4 (PR#3749), et aller un poil plus vite sur IA64 n'a aucune importance

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7080 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Xavier Leroy 2005-09-24 17:08:24 +00:00
parent 8549490a55
commit 85a401f88d
1 changed files with 1 additions and 5 deletions

View File

@ -55,11 +55,7 @@ sp is a local copy of the global variable caml_extern_sp. */
# ifdef DEBUG
# define Next goto next_instr
# else
# ifdef __ia64__
# define Next goto *(void *)(jumptbl_base + *((uint32 *) pc)++)
# else
# define Next goto *(void *)(jumptbl_base + *pc++)
# endif
# define Next goto *(void *)(jumptbl_base + *pc++)
# endif
#else
# define Instruct(name) case name