diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-08 19:29:54 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-08 19:29:54 +0000 |
commit | a20e31dcf0260ced84729ebab39c0181ae1966d7 (patch) | |
tree | 75c10b696de7203bc275e3d3ccf1772510ae1fd6 /translate-all.c | |
parent | Set mime-type of *.texi files to text/plain" from application/x-texinfo. (diff) | |
download | qemu-kvm-a20e31dcf0260ced84729ebab39c0181ae1966d7.tar.gz qemu-kvm-a20e31dcf0260ced84729ebab39c0181ae1966d7.tar.bz2 qemu-kvm-a20e31dcf0260ced84729ebab39c0181ae1966d7.zip |
Use a common constant for temp_buf size
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4176 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'translate-all.c')
-rw-r--r-- | translate-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate-all.c b/translate-all.c index 061bb901a..d16d218f3 100644 --- a/translate-all.c +++ b/translate-all.c @@ -85,7 +85,7 @@ void cpu_gen_init(void) { tcg_context_init(&tcg_ctx); tcg_set_frame(&tcg_ctx, TCG_AREG0, offsetof(CPUState, temp_buf), - 128 * sizeof(long)); + CPU_TEMP_BUF_NLONGS * sizeof(long)); } /* return non zero if the very first instruction is invalid so that |