Add missing switch case in PcodeOp.toString for SEGMENTOP

This commit is contained in:
Jeremy Pritts 2025-01-28 03:56:22 -05:00 committed by GitHub
parent 21893b10f6
commit e71b4381b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -689,6 +689,8 @@ public class PcodeOp {
return "PTRADD";
case PTRSUB:
return "PTRSUB";
case SEGMENTOP:
return "SEGMENTOP";
case CPOOLREF:
return "CPOOLREF";
case NEW: