-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Open
Description
This old issue doesn't seem to be fixed as all: https://bugs.llvm.org/show_bug.cgi?id=49389
Bug 49389 would be reposted below (godbolt link: https://godbolt.org/z/hdza9Pb8z):
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#define N 1234
bool eat_digits(uint8_t s[N]) {
size_t i = 0;
while (i < N) {
uint8_t c = s[i];
if ('0' <= c && c <= '9') {
i += 1;
} else {
break;
}
}
return i <= N;
}
compiles to:
eat_digits: # @eat_digits
xor ecx, ecx
.LBB0_1: # =>This Inner Loop Header: Depth=1
mov rax, rcx
cmp rcx, 1234
je .LBB0_3
movzx edx, byte ptr [rdi + rax]
add dl, -48
lea rcx, [rax + 1]
cmp dl, 10
jb .LBB0_1
.LBB0_3:
cmp rax, 1235
setb al
ret
GCC is able to compile it to:
eat_digits:
mov eax, 1
ret
This is originally from: rust-lang/rust#81432