File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1916,7 +1916,9 @@ fn test_arch_hppa() {
19161916 Some ( Endian :: Big ) ,
19171917 & [ ] ,
19181918 & [
1919- ( "ldsid" , b"\x00 \x20 \x50 \xa2 " ) ,
1919+ // Upstream bug: access to uninitialized value
1920+ // https://github.com/capstone-engine/capstone/issues/2717
1921+ // ("ldsid", b"\x00\x20\x50\xa2"),
19201922 ( "mtsp" , b"\x00 \x01 \x58 \x20 " ) ,
19211923 ] ,
19221924 ) ;
@@ -1940,7 +1942,10 @@ fn test_arch_hppa_detail() {
19401942 Some ( Endian :: Big ) ,
19411943 & [ ] ,
19421944 & [
1945+ // Upstream bug: access to uninitialized value
1946+ // https://github.com/capstone-engine/capstone/issues/2717
19431947 // ldsid (sr1, r1), rp
1948+ /*
19441949 DII::new(
19451950 "ldsid",
19461951 b"\x00\x20\x50\xa2",
@@ -1959,6 +1964,7 @@ fn test_arch_hppa_detail() {
19591964 },
19601965 ],
19611966 ),
1967+ */
19621968 // mtsp r1, sr1
19631969 DII :: new (
19641970 "mtsp" ,
You can’t perform that action at this time.
0 commit comments