Skip to content

Commit 092802b

Browse files
author
Owen
committed
Use underscores instead of hyphens
This matches the things around it better.
1 parent 17ed797 commit 092802b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ansi-c/expr2c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3427,7 +3427,7 @@ std::string expr2ct::convert_with_precedence(
34273427
return convert_function(src, "W_OK", precedence = 16);
34283428

34293429
else if(src.id() == ID_is_invalid_pointer)
3430-
return convert_function(src, "IS-INVALID-POINTER", precedence=16);
3430+
return convert_function(src, "IS_INVALID_POINTER", precedence=16);
34313431

34323432
else if(src.id()==ID_good_pointer)
34333433
return convert_function(src, "GOOD_POINTER", precedence=16);

src/util/irep_ids.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ IREP_ID_ONE(invalid)
217217
IREP_ID_TWO(C_invalid_object, #invalid_object)
218218
IREP_ID_ONE(pointer_offset)
219219
IREP_ID_ONE(pointer_object)
220-
IREP_ID_TWO(is_invalid_pointer, is-invalid-pointer)
220+
IREP_ID_TWO(is_invalid_pointer, is_invalid_pointer)
221221
IREP_ID_ONE(ieee_float_equal)
222222
IREP_ID_ONE(ieee_float_notequal)
223223
IREP_ID_ONE(isnan)

0 commit comments

Comments
 (0)