diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-06-03 17:06:07 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-06-21 18:45:22 +0000 |
commit | 71547a3bf3463af138fadab490b54030d9c74f10 (patch) | |
tree | 35a070e67e8e4bab960ac2267778a4768d2c9376 /target-i386 | |
parent | dafdf1abfd339602c17228a8de5adcf000eaefd0 (diff) | |
download | qemu-71547a3bf3463af138fadab490b54030d9c74f10.tar.gz qemu-71547a3bf3463af138fadab490b54030d9c74f10.tar.bz2 qemu-71547a3bf3463af138fadab490b54030d9c74f10.zip |
qemu-log: use LOG_UNIMP for some target CPU cases
Use LOG_UNIMP for some target CPU cases.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Acked-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/op_helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index bc3b94e149..2862ea4a92 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -3146,6 +3146,7 @@ void helper_rdpmc(void) helper_svm_check_intercept_param(SVM_EXIT_RDPMC, 0); /* currently unimplemented */ + qemu_log_mask(LOG_UNIMP, "x86: unimplemented rdpmc\n"); raise_exception_err(EXCP06_ILLOP, 0); } |