[PATCH] D140816: [AVR] Fix incorrect decoding of conditional branch instructions
Ben Shi via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 6 23:39:01 PST 2023
benshi001 added a comment.
The conditional branch instructions are defined in two ways:
1. Defined as stand alone instructions: such as `breq`, `brne`, `brlo`, ...
2. Defined as aliases of `brbc`/`brbs`, such `brbs`, `brbc`, `brid`, `brie`, ...
The above two situations are both tested in current patch.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D140816/new/
https://reviews.llvm.org/D140816
More information about the llvm-commits
mailing list