From: Gabe Black Date: Thu, 9 Oct 2008 07:07:38 +0000 (-0700) Subject: Microcode: Fix a silent typo error in the microcode assembler. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=975c9e3af869fb2905933c93c4d657e4d7187dad;p=gem5.git Microcode: Fix a silent typo error in the microcode assembler. --- diff --git a/src/arch/micro_asm.py b/src/arch/micro_asm.py index 0982f6b89..3433a8076 100644 --- a/src/arch/micro_asm.py +++ b/src/arch/micro_asm.py @@ -141,7 +141,7 @@ def handle_statement(parser, container, statement): try: for label in statement.labels: container.labels[label.text] = microop - if label.extern: + if label.is_extern: container.externs[label.text] = microop container.add_microop(statement.mnemonic, microop) except: