diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-03-21 21:09:24 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-03-21 21:09:24 +0000 |
commit | 276f6d794d61f74eee56968d8a0084e74335c26e (patch) | |
tree | be0e60eff8b9afb72214796d458879607eb5b26b /src/arch/x86/isa | |
parent | bbffaa8ee0af3a4c8454d63f197dbb3036918904 (diff) | |
download | gem5-276f6d794d61f74eee56968d8a0084e74335c26e.tar.xz |
Add a junk operand. With no operands, the parser breaks.
--HG--
extra : convert_revision : 7410fd3681ed3d9b1293d982ed5f3553a6c75f3f
Diffstat (limited to 'src/arch/x86/isa')
-rw-r--r-- | src/arch/x86/isa/operands.isa | 3 |
1 files changed, 3 insertions, 0 deletions
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) }}; |