From 11ba42eccc2bd0ce6d893b583a37dc0b46d09adf Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Wed, 24 Apr 2019 13:06:00 -0700 Subject: qbe: Make sure generated code doesn't depend on argument evaluation order It would be correct in any order, but this is a bit simpler and guarantees the same output. --- test/bitfield-compound-assign.qbe | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/bitfield-compound-assign.qbe b/test/bitfield-compound-assign.qbe index 829f5f6..5cc38de 100644 --- a/test/bitfield-compound-assign.qbe +++ b/test/bitfield-compound-assign.qbe @@ -10,10 +10,10 @@ function $f() { %.6 =w shl %.5, 19 %.7 =w sar %.6, 23 %.8 =w add %.7, 3 - %.9 =w loaduw %.4 - %.10 =w and %.9, 18446744073709543439 - %.11 =w shl %.8, 4 - %.12 =w and %.11, 8176 + %.9 =w shl %.8, 4 + %.10 =w and %.9, 8176 + %.11 =w loaduw %.4 + %.12 =w and %.11, 18446744073709543439 %.13 =w or %.10, %.12 storew %.13, %.4 ret -- cgit v1.2.3