projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
523531a
)
Microcode: Fix a silent typo error in the microcode assembler.
author
Gabe Black
<gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:07:38 +0000
(
00:07
-0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:07:38 +0000
(
00:07
-0700)
src/arch/micro_asm.py
patch
|
blob
|
history
diff --git
a/src/arch/micro_asm.py
b/src/arch/micro_asm.py
index 0982f6b89a69c4dcf0bdae01cae30172d7d31913..3433a80763ae766f6df1a6c129d1b048d06279dd 100644
(file)
--- 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: