summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa/formats/int.isa
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/mips/isa/formats/int.isa')
-rw-r--r--src/arch/mips/isa/formats/int.isa4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/isa/formats/int.isa b/src/arch/mips/isa/formats/int.isa
index 88ff5c1d3..14dcc7259 100644
--- a/src/arch/mips/isa/formats/int.isa
+++ b/src/arch/mips/isa/formats/int.isa
@@ -357,9 +357,9 @@ def format HiLoRdSelOp(code, *opt_flags) {{
def format HiLoRdSelValOp(code, *opt_flags) {{
- if '.sd' in code:
+ if '_sd' in code:
code = 'int64_t ' + code
- elif '.ud' in code:
+ elif '_ud' in code:
code = 'uint64_t ' + code
code += 'HI_RD_SEL = val<63:32>;\n'