From 94d70bdb69d4459ea522bcef2bc02a56f5a92091 Mon Sep 17 00:00:00 2001 From: Koakuma Date: Fri, 1 Apr 2022 19:30:37 +0700 Subject: [PATCH] stage2: sparcv9: Change ordering in Mir Tag --- src/arch/sparcv9/Mir.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/arch/sparcv9/Mir.zig b/src/arch/sparcv9/Mir.zig index 43b008d189..0b7c2185eb 100644 --- a/src/arch/sparcv9/Mir.zig +++ b/src/arch/sparcv9/Mir.zig @@ -37,14 +37,14 @@ pub const Inst = struct { /// It uses the nop field. nop, + /// A.45 RETURN + /// It uses the arithmetic_2op field. + @"return", + /// A.46 SAVE and RESTORE /// Those uses the arithmetic_3op field. save, restore, - - /// A.45 RETURN - /// It uses the arithmetic_2op field. - @"return", }; /// The position of an MIR instruction within the `Mir` instructions array.