From: David Daney Date: Thu, 1 Aug 2013 20:22:34 +0000 (-0700) Subject: mips/kvm: Cleanup .push/.pop directives in kvm_locore.S X-Git-Tag: v3.12-rc1~143^2~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb48c2fc6429314fa607106ccb901552484c6663;p=pandora-kernel.git mips/kvm: Cleanup .push/.pop directives in kvm_locore.S 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 Acked-by: Paolo Bonzini Signed-off-by: Gleb Natapov --- Reading git-diff-tree failed