From 640ab1d2e76835ecc20596d5d218b97a2ab0cf9d Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 14 Jun 2007 13:49:23 +0000 Subject: [PATCH] Get rid of an unnecessary debug statement. --HG-- extra : convert_revision : 0b306dd96f5358474ad6a8bf4a949c12bcd139cd --- src/arch/x86/isa/specialize.isa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])