reorder the decoder test cases to match the PowerISA v3.1C PDF

This commit is contained in:
Jacob Lifshay 2026-01-23 09:46:29 -08:00
parent fc8a6cd959
commit 5e9d0957f6
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ
2 changed files with 15009 additions and 14926 deletions

File diff suppressed because it is too large Load diff

View file

@ -107,6 +107,7 @@ fn insn_double(
pub fn test_cases() -> Vec<TestCase> {
let mut retval = Vec::new();
branch::test_cases_book_i_2_4_branch(&mut retval);
fixed_point_arithmetic::test_cases_book_i_3_3_9_fixed_point_arithmetic(&mut retval);
fixed_point_compare::test_cases_book_i_3_3_10_fixed_point_compare(&mut retval);
fixed_point_logical::test_cases_book_i_3_3_13_fixed_point_logical(&mut retval);
@ -114,6 +115,5 @@ pub fn test_cases() -> Vec<TestCase> {
&mut retval,
);
prefixed_no_operation::test_cases_book_i_3_3_20_prefixed_no_operation(&mut retval);
branch::test_cases_book_i_2_4_branch(&mut retval);
retval
}