Searched hist:11443 (Results 1 - 2 of 2) sorted by relevance

/gem5/src/arch/arm/isa/insts/
H A Dneon.isadiff 11443:df24b9af42c7 Wed Apr 13 00:13:00 EDT 2016 Andreas Hansson <andreas.hansson@arm.com> misc: Fix issues flagged by gcc 6

A few warnings (and thus errors) pop up after being added to -Wall:

1. -Wmisleading-indentation

In the auto-generated code there were instances of if/else blocks that
were not indented to gcc's liking. This is addressed by adding braces.

2. -Wshift-negative-value

gcc is clever enougn to consider ~0 a negative constant, and
rightfully complains. This is addressed by using mask() which
explicitly casts to unsigned before shifting.

That is all. Porting done.
/gem5/src/mem/ruby/system/
H A DDMASequencer.ccdiff 11443:df24b9af42c7 Wed Apr 13 00:13:00 EDT 2016 Andreas Hansson <andreas.hansson@arm.com> misc: Fix issues flagged by gcc 6

A few warnings (and thus errors) pop up after being added to -Wall:

1. -Wmisleading-indentation

In the auto-generated code there were instances of if/else blocks that
were not indented to gcc's liking. This is addressed by adding braces.

2. -Wshift-negative-value

gcc is clever enougn to consider ~0 a negative constant, and
rightfully complains. This is addressed by using mask() which
explicitly casts to unsigned before shifting.

That is all. Porting done.

Completed in 21 milliseconds