diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-06-14 13:49:23 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-06-14 13:49:23 +0000 |
commit | 640ab1d2e76835ecc20596d5d218b97a2ab0cf9d (patch) | |
tree | aa72b90ac12a917657c01de23fbedfea9ab0af9b /src/arch/x86/isa | |
parent | 20ec77fdc17b3f3382b142d8241f31a34363804c (diff) | |
download | gem5-640ab1d2e76835ecc20596d5d218b97a2ab0cf9d.tar.xz |
Get rid of an unnecessary debug statement.
--HG--
extra : convert_revision : 0b306dd96f5358474ad6a8bf4a949c12bcd139cd
Diffstat (limited to 'src/arch/x86/isa')
-rw-r--r-- | src/arch/x86/isa/specialize.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/specialize.isa b/src/arch/x86/isa/specialize.isa index 37f523efc..96add3ab5 100644 --- a/src/arch/x86/isa/specialize.isa +++ b/src/arch/x86/isa/specialize.isa @@ -101,7 +101,7 @@ let {{ # This function specializes the given piece of code to use a particular # set of argument types described by "opTypes". def specializeInst(Name, opTypes, env): - print "Specializing %s with opTypes %s" % (Name, opTypes) + # print "Specializing %s with opTypes %s" % (Name, opTypes) while len(opTypes): # Parse the operand type string we're working with opType = OpType(opTypes[0]) |