From: Gabe Black Date: Tue, 19 Jun 2007 17:53:10 +0000 (+0000) Subject: Make an error message a little more descriptive. X-Git-Tag: m5_2.0_beta4~332 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4486762a8519783aaec7ebe6a391355cd30792e0;p=gem5.git Make an error message a little more descriptive. --HG-- extra : convert_revision : dbde025b1dcec0083e7276a9938bd21e7ab2887f --- diff --git a/src/arch/micro_asm.py b/src/arch/micro_asm.py index a8a63e1f8..145029477 100644 --- a/src/arch/micro_asm.py +++ b/src/arch/micro_asm.py @@ -131,7 +131,8 @@ def handle_statement(parser, container, statement): microop = eval('parser.microops[statement.mnemonic](%s)' % statement.params) except: - print_error("Error creating microop object.") + print_error("Error creating microop object with mnemonic %s." % \ + statement.mnemonic) raise try: for label in statement.labels: