diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2012-07-10 22:51:54 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2012-07-10 22:51:54 -0700 |
commit | 884cd6f7526e35fe900413eb5f5c07c04fc2b7e3 (patch) | |
tree | d0da43647595ac0e2eefb5d3278f9163ae016ca3 /src/mem/slicc/ast/FuncCallExprAST.py | |
parent | 86d6b788f6d7b523c750ffb64d6d8920ec741c49 (diff) | |
download | gem5-884cd6f7526e35fe900413eb5f5c07c04fc2b7e3.tar.xz |
imported patch jason/slicc-external-structure-fix
Diffstat (limited to 'src/mem/slicc/ast/FuncCallExprAST.py')
-rw-r--r-- | src/mem/slicc/ast/FuncCallExprAST.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/slicc/ast/FuncCallExprAST.py b/src/mem/slicc/ast/FuncCallExprAST.py index 75ec12344..3747d0dfd 100644 --- a/src/mem/slicc/ast/FuncCallExprAST.py +++ b/src/mem/slicc/ast/FuncCallExprAST.py @@ -93,7 +93,7 @@ class FuncCallExprAST(ExprAST): for expr,expected_type in zip(self.exprs, func.param_types): # Check the types of the parameter actual_type,param_code = expr.inline(True) - if actual_type != expected_type: + if str(actual_type) != str(expected_type): expr.error("Type mismatch: expected: %s actual: %s" % \ (expected_type, actual_type)) cvec.append(param_code) |