2000-10-06 Dave Brolley <brolley@redhat.com>

* sem.c: Regenerated.
	* sem-switch.c: Regenerated.
This commit is contained in:
Dave Brolley 2000-10-06 16:58:40 +00:00
parent f40c3ea3c7
commit ce852dd37c
3 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-10-06 Dave Brolley <brolley@redhat.com>
* sem.c: Regenerated.
* sem-switch.c: Regenerated.
2000-08-28 Dave Brolley <brolley@redhat.com>
* cpu.h: Regenerated.

View File

@ -384,12 +384,16 @@ SWITCH (sem, SEM_ARGBUF (vpc) -> semantic.sem_case)
{
#if WITH_SCACHE_PBB_FR30BF
#ifdef DEFINE_SWITCH
#if defined DEFINE_SWITCH || defined FAST_P
/* In the switch case FAST_P is a constant, allowing several optimizations
in any called inline functions. */
vpc = fr30bf_pbb_begin (current_cpu, FAST_P);
#else
#if 0 /* cgen engine can't handle dynamic fast/full switching yet. */
vpc = fr30bf_pbb_begin (current_cpu, STATE_RUN_FAST_P (CPU_STATE (current_cpu)));
#else
vpc = fr30bf_pbb_begin (current_cpu, 0);
#endif
#endif
#endif
}

View File

@ -179,12 +179,16 @@ SEM_FN_NAME (fr30bf,x_begin) (SIM_CPU *current_cpu, SEM_ARG sem_arg)
{
#if WITH_SCACHE_PBB_FR30BF
#ifdef DEFINE_SWITCH
#if defined DEFINE_SWITCH || defined FAST_P
/* In the switch case FAST_P is a constant, allowing several optimizations
in any called inline functions. */
vpc = fr30bf_pbb_begin (current_cpu, FAST_P);
#else
#if 0 /* cgen engine can't handle dynamic fast/full switching yet. */
vpc = fr30bf_pbb_begin (current_cpu, STATE_RUN_FAST_P (CPU_STATE (current_cpu)));
#else
vpc = fr30bf_pbb_begin (current_cpu, 0);
#endif
#endif
#endif
}