diff options
author | Bjoern A. Zeeb <baz21@cam.ac.uk> | 2017-09-10 14:45:16 +0000 |
---|---|---|
committer | B.A. Zeeb <baz21@cam.ac.uk> | 2017-09-27 22:13:09 +0000 |
commit | 9eac6c5ce50930d9c92bdf7f9a5f875c3cfd16f8 (patch) | |
tree | daf0accd899253c8b2326a84cab73e772c02ab7b /src/arch/isa_parser.py | |
parent | e4c60aa0c1952ea0ee22bc122dcc4b83e6527ee1 (diff) | |
download | gem5-9eac6c5ce50930d9c92bdf7f9a5f875c3cfd16f8.tar.xz |
arch: change panic for Vector traceData to warn_once
Make the traceData panic for Vectors a warn_once. It's a pity it's
not implemented but it's not a reason to abort the simulation entirely.
Change-Id: I5e97258fd4e3fa385cfe0c4b400524d1f7b154df
Reviewed-on: https://gem5-review.googlesource.com/4860
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/arch/isa_parser.py')
-rwxr-xr-x | src/arch/isa_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/isa_parser.py b/src/arch/isa_parser.py index ac639b413..4c3902fc9 100755 --- a/src/arch/isa_parser.py +++ b/src/arch/isa_parser.py @@ -802,7 +802,7 @@ class VecRegOperand(Operand): wb = ''' if (traceData) { - panic("Vectors not supported yet in tracedata"); + warn_once("Vectors not supported yet in tracedata"); /*traceData->setData(final_val);*/ } ''' |