From: Gabe Black Date: Wed, 21 Mar 2007 21:09:24 +0000 (+0000) Subject: Add a junk operand. With no operands, the parser breaks. X-Git-Tag: m5_2.0_beta3~78 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=276f6d794d61f74eee56968d8a0084e74335c26e;p=gem5.git Add a junk operand. With no operands, the parser breaks. --HG-- extra : convert_revision : 7410fd3681ed3d9b1293d982ed5f3553a6c75f3f --- diff --git a/src/arch/x86/isa/operands.isa b/src/arch/x86/isa/operands.isa index 4b144dce0..20376f38f 100644 --- a/src/arch/x86/isa/operands.isa +++ b/src/arch/x86/isa/operands.isa @@ -96,4 +96,7 @@ def operand_types {{ }}; def operands {{ + # This is just copied from SPARC, because having no operands confuses + # the parser. + 'Rd': ('IntReg', 'udw', 'RD', 'IsInteger', 1) }};