arch: Wrap a docstring in isa_parser.py.
authorGabe Black <gabeblack@google.com>
Tue, 29 Sep 2020 07:39:01 +0000 (00:39 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 29 Sep 2020 22:03:14 +0000 (22:03 +0000)
commitba197c116368bbab05af6d636ab24cb65c73b291
tree7639f0506a24c5625b89df83d41eb8316aae9be3
parent7e8bc773534ae2db3e9b97a14983d7356223ea05
arch: Wrap a docstring in isa_parser.py.

This brings the ISA parser in line with the style guide. Note that the
docstring needs to be a single string literal for python to consider it
a docstring, and the parser itself needs each line of the docstring to
be a rule in its CFG. We can accomplish both by taking advantage of the
fact that two directly adjacent quoted strings are treated as a single
string literal by python, and by escaping the newline so that they're
actually considered adjacent.

Change-Id: I7f4d252998877808425aafb0159600ba4c3bf9ad
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/35276
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Giacomo Travaglini <giacomo.travaglini@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/isa_parser.py