string format expression op when version is below 3

This commit is contained in:
Nikita Smith
2025-11-07 14:39:45 -08:00
committed by Ryan Fleury
parent 1b6e9e9d7b
commit 9e965e345f
+3 -3
View File
@@ -558,13 +558,13 @@ dw_string_from_expr_op(Arena *arena, DW_Version ver, DW_Ext ext, DW_ExprOp op)
DW_Expr_V4_XList(X) DW_Expr_V4_XList(X)
} }
} // fall-through } // fall-through
case DW_Version_3: { case DW_Version_3:
case DW_Version_2:
case DW_Version_1: {
switch (op) { switch (op) {
DW_Expr_V3_XList(X) DW_Expr_V3_XList(X)
} }
} // fall-through } // fall-through
case DW_Version_2:
case DW_Version_1:
case DW_Version_Null: case DW_Version_Null:
break; break;
} }