mips/kvm: Cleanup .push/.pop directives in kvm_locore.S
authorDavid Daney <david.daney@cavium.com>
Thu, 1 Aug 2013 20:22:34 +0000 (13:22 -0700)
committerGleb Natapov <gleb@redhat.com>
Mon, 26 Aug 2013 09:30:39 +0000 (12:30 +0300)
There are:
.set push
.set noreorder
.set noat
 .
 .
 .
.set pop

Sequences all over the place in this file, but in some places the
final ".set pop" is erroneously converted to ".set push", so none of
these really do what they appear to.

Clean up the whole mess by moving ".set noreorder", ".set noat" to the
top, and get rid of everything else.

Generated object code is unchanged.

Signed-off-by: David Daney <david.daney@cavium.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>

No differences found