diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-24 23:16:35 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-24 23:16:35 +0000 |
commit | 6676f42453b1a6b5c5e98d4795a230ffc0a783ed (patch) | |
tree | 1977ed9aef97c5b47af9dc831ba825d2bb95519a /target-ppc/op_helper.h | |
parent | 61c0480722bd86380e396db537bd8fea403b37db (diff) | |
download | qemu-6676f42453b1a6b5c5e98d4795a230ffc0a783ed.zip |
Revert commits 5082 and 5083
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5084 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op_helper.h')
-rw-r--r-- | target-ppc/op_helper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-ppc/op_helper.h b/target-ppc/op_helper.h index b25db4a991..8c8c812051 100644 --- a/target-ppc/op_helper.h +++ b/target-ppc/op_helper.h @@ -51,6 +51,7 @@ void glue(do_dcbz_64, MEMSUFFIX) (void); void do_print_mem_EA (target_ulong EA); /* Registers load and stores */ +void do_load_cr (void); void do_store_cr (uint32_t mask); #if defined(TARGET_PPC64) void do_store_pri (int prio); @@ -87,6 +88,10 @@ void do_subfmeo_64 (void); void do_subfzeo_64 (void); void do_srad (void); #endif +void do_popcntb (void); +#if defined(TARGET_PPC64) +void do_popcntb_64 (void); +#endif /* Floating-point arithmetic helpers */ void do_compute_fprf (int set_class); @@ -133,6 +138,7 @@ void do_tw (int flags); void do_td (int flags); #endif #if !defined(CONFIG_USER_ONLY) +void do_store_msr (void); void do_rfi (void); #if defined(TARGET_PPC64) void do_rfid (void); |