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 @@ -2009,7 +2009,9 @@ fn test_arch_hppa() {
20092009 Some ( Endian :: Big ) ,
20102010 & [ ] ,
20112011 & [
2012- ( "ldsid" , b"\x00 \x20 \x50 \xa2 " ) ,
2012+ // Upstream bug: access to uninitialized value
2013+ // https://github.com/capstone-engine/capstone/issues/2717
2014+ // ("ldsid", b"\x00\x20\x50\xa2"),
20132015 ( "mtsp" , b"\x00 \x01 \x58 \x20 " ) ,
20142016 ] ,
20152017 ) ;
@@ -2033,7 +2035,10 @@ fn test_arch_hppa_detail() {
20332035 Some ( Endian :: Big ) ,
20342036 & [ ] ,
20352037 & [
2038+ // Upstream bug: access to uninitialized value
2039+ // https://github.com/capstone-engine/capstone/issues/2717
20362040 // ldsid (sr1, r1), rp
2041+ /*
20372042 DII::new(
20382043 "ldsid",
20392044 b"\x00\x20\x50\xa2",
@@ -2052,6 +2057,7 @@ fn test_arch_hppa_detail() {
20522057 },
20532058 ],
20542059 ),
2060+ */
20552061 // mtsp r1, sr1
20562062 DII :: new (
20572063 "mtsp" ,
You can’t perform that action at this time.
0 commit comments