summaryrefslogtreecommitdiff
path: root/src/sim/arguments.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-10-15 23:57:06 -0700
committerGabe Black <gblack@eecs.umich.edu>2010-10-15 23:57:06 -0700
commitab9f062166085c9750eeee2318c25efeb2ec5948 (patch)
tree21cb1f2f3d4ec4d64574516e1335e6697321c07f /src/sim/arguments.cc
parentb197a542b4e572d1e2df149642850fb9189c86c7 (diff)
downloadgem5-ab9f062166085c9750eeee2318c25efeb2ec5948.tar.xz
GetArgument: Rework getArgument so that X86_FS compiles again.
When no size is specified for an argument, push the decision about what size to use into the ISA by passing a size of -1.
Diffstat (limited to 'src/sim/arguments.cc')
-rw-r--r--src/sim/arguments.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/arguments.cc b/src/sim/arguments.cc
index 511fc630d..6d45e3b3d 100644
--- a/src/sim/arguments.cc
+++ b/src/sim/arguments.cc
@@ -50,7 +50,7 @@ Arguments::Data::alloc(size_t size)
}
uint64_t
-Arguments::getArg(uint8_t size, bool fp)
+Arguments::getArg(uint16_t size, bool fp)
{
return TheISA::getArgument(tc, number, size, fp);
}