1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef GCC_GCSE_H
- #define GCC_GCSE_H
- struct target_gcse {
-
- char x_can_copy[(int) NUM_MACHINE_MODES];
-
- bool x_can_copy_init_p;
- };
- extern struct target_gcse default_target_gcse;
- #if SWITCHABLE_TARGET
- extern struct target_gcse *this_target_gcse;
- #else
- #define this_target_gcse (&default_target_gcse)
- #endif
- void gcse_c_finalize (void);
- #endif
|