On Tue, Nov 10, 2015 at 03:57:32PM +, Stefan Hajnoczi wrote:
> LLVM's clang 3.7.0 compile warns about bit shifting negative numbers because
> the result is undefined. This series includes 3 small fixes to appease clang.
>
> Stefan Hajnoczi (3):
> monitor: avoid clang shifting negative signe
On Mon, Nov 16, 2015 at 03:20:12PM +, Peter Maydell wrote:
> On 16 November 2015 at 14:23, Peter Maydell wrote:
> > My clang-3.7 build (it's part of fbinfer) also complains about:
> >
> > /Users/pm215/src/qemu/hw/audio/fmopl.c:1085:39: warning: shifting a
> > negative signed value is undefined
On 16 November 2015 at 14:23, Peter Maydell wrote:
> My clang-3.7 build (it's part of fbinfer) also complains about:
>
> /Users/pm215/src/qemu/hw/audio/fmopl.c:1085:39: warning: shifting a
> negative signed value is undefined [-Wshift-negative-value]
> data = Limit( outd[0] , OPL_M
On 10 November 2015 at 15:57, Stefan Hajnoczi wrote:
> LLVM's clang 3.7.0 compile warns about bit shifting negative numbers because
> the result is undefined. This series includes 3 small fixes to appease clang.
>
> Stefan Hajnoczi (3):
> monitor: avoid clang shifting negative signed warning
>
On 10 November 2015 at 15:57, Stefan Hajnoczi wrote:
> LLVM's clang 3.7.0 compile warns about bit shifting negative numbers because
> the result is undefined. This series includes 3 small fixes to appease clang.
>
> Stefan Hajnoczi (3):
> monitor: avoid clang shifting negative signed warning
>
LLVM's clang 3.7.0 compile warns about bit shifting negative numbers because
the result is undefined. This series includes 3 small fixes to appease clang.
Stefan Hajnoczi (3):
monitor: avoid clang shifting negative signed warning
tpm: avoid clang shifting negative signed warning
disas/arm: