Re: [Qemu-devel] [PATCH] tcg/arm: Fix compiler error caused by unused function

2011-08-24 Thread Andreas Färber
Am 13.08.2011 um 11:16 schrieb Stefan Weil: Am 29.07.2011 22:07, schrieb Stefan Weil: Function tcg_out_addi is obviously unused and causes a compiler error (tested with cross compilation on x86 Debian Linux): tcg/arm/tcg-target.c:1824: error: ‘tcg_out_addi’ defined but not used Don't remove i

Re: [Qemu-devel] [PATCH] tcg/arm: Fix compiler error caused by unused function

2011-08-13 Thread Stefan Weil
Am 29.07.2011 22:07, schrieb Stefan Weil: Function tcg_out_addi is obviously unused and causes a compiler error (tested with cross compilation on x86 Debian Linux): tcg/arm/tcg-target.c:1824: error: ‘tcg_out_addi’ defined but not used Don't remove it because it might be useful in the future, bu

[Qemu-devel] [PATCH] tcg/arm: Fix compiler error caused by unused function

2011-07-29 Thread Stefan Weil
Function tcg_out_addi is obviously unused and causes a compiler error (tested with cross compilation on x86 Debian Linux): tcg/arm/tcg-target.c:1824: error: ‘tcg_out_addi’ defined but not used Don't remove it because it might be useful in the future, but declare it inline. This fixes the compiler