We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b61b26 + 40820d8 commit d22b787Copy full SHA for d22b787
src/breakpoint.c
@@ -12,7 +12,9 @@
12
static inline int cmp(const void *arg0, const void *arg1)
13
{
14
riscv_word_t *a = (riscv_word_t *) arg0, *b = (riscv_word_t *) arg1;
15
- return (*a < *b) ? _CMP_LESS : (*a > *b) ? _CMP_GREATER : _CMP_EQUAL;
+ return (*a < *b) ? MAP_CMP_LESS
16
+ : (*a > *b) ? MAP_CMP_GREATER
17
+ : MAP_CMP_EQUAL;
18
}
19
20
breakpoint_map_t breakpoint_map_new()
0 commit comments