mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 22:33:36 +00:00
@@ -12128,12 +12128,12 @@ gb_internal bool is_exact_value_zero(ExactValue const &v) {
|
||||
|
||||
|
||||
|
||||
gb_internal bool compare_exact_values_compound_lit(TokenKind op, ExactValue x, ExactValue y, bool *do_break_) {
|
||||
gb_internal bool compare_exact_values_compound_lit(TokenKind op, ExactValue x, ExactValue y) {
|
||||
ast_node(x_cl, CompoundLit, x.value_compound);
|
||||
ast_node(y_cl, CompoundLit, y.value_compound);
|
||||
|
||||
if (x_cl->elems.count != y_cl->elems.count) {
|
||||
if (do_break_) *do_break_ = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool test = op == Token_CmpEq;
|
||||
|
||||
Reference in New Issue
Block a user