summaryrefslogtreecommitdiff
path: root/src/mem/slicc/ast
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2019-01-25 12:12:38 +0000
committerAndreas Sandberg <andreas.sandberg@arm.com>2019-02-12 17:36:12 +0000
commit5cd4248672e5cd62cfec4753bd6d6ce666694f1f (patch)
tree7b0379ee8f0ff44a76895ff50922becda6a16d40 /src/mem/slicc/ast
parent5cf312eb5bec50ab2142ce4c7df05d673cd9a716 (diff)
downloadgem5-5cd4248672e5cd62cfec4753bd6d6ce666694f1f.tar.xz
python: Replace dict.has_key with 'key in dict'
Python 3 has removed dict.has_key in favour of 'key in dict'. Change-Id: I9852a5f57d672bea815308eb647a0ce45624fad5 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/15987 Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Diffstat (limited to 'src/mem/slicc/ast')
-rw-r--r--src/mem/slicc/ast/PeekStatementAST.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/slicc/ast/PeekStatementAST.py b/src/mem/slicc/ast/PeekStatementAST.py
index 00d26e908..6cadb3130 100644
--- a/src/mem/slicc/ast/PeekStatementAST.py
+++ b/src/mem/slicc/ast/PeekStatementAST.py
@@ -71,7 +71,7 @@ class PeekStatementAST(StatementAST):
}
''')
- if self.pairs.has_key("block_on"):
+ if "block_on" in self.pairs:
address_field = self.pairs['block_on']
code('''
if (m_is_blocking &&
@@ -82,7 +82,7 @@ class PeekStatementAST(StatementAST):
}
''')
- if self.pairs.has_key("wake_up"):
+ if "wake_up" in self.pairs:
address_field = self.pairs['wake_up']
code('''
if (m_waiting_buffers.count(in_msg_ptr->m_$address_field) > 0) {