Hsiang-Ying Fu

Results 36 comments of Hsiang-Ying Fu

QBE was supposed to be in the server as the backend of C compiler cproc, but has been broken for some time: https://github.com/compiler-explorer/compiler-explorer/issues/7241 It is also the backend for another...

I agree, just a hint to maintainers that it was part of the infrastructure at one point.

This fork has it fixed: https://github.com/n0tknowing/chibicc Or checkout my fork's alternative algorithm https://github.com/fuhsnn/slimcc/commit/c3a11942520c983748898a78806ec4bf6e90b0ae

Your team submitted three patches in a row https://github.com/fuhsnn/slimcc/pull/89#issuecomment-2564820791, https://github.com/fuhsnn/slimcc/pull/90#issuecomment-2507296289, https://github.com/fuhsnn/slimcc/pull/93#issuecomment-2507299005 that ended up almost identical with another author's chibicc fork, that really drained my motivation to look at your...

Hi, the frontend isn't complete nor stable, I still frequently find things necessary to change around for old bugs / new features, failing early keeps things more flexible. There are...

It'll be sad in a bootstrapping scenario that there's no way to verify muon/meson works for C, unless you also have a fully working C++ compiler in the system; the...

With current muon test suite, there are two tests that fail this way (i.e., only happens with if `-fno-pie` is default) ``` fail 0.19s project+common+requires_python:common/118 llvm ir and assembly fail...

Implemented, thanks for the push, I'm following GCC convention so `-v` is `--verbose`. Some trivia: I found most projects pretty tolerant with not having these flags , there's only one...

Can you share a bit more about your setup (distro and version) and what code triggers that? I'll try to reproduce it. ASAN shouldn't be required for normal usage, though,...

Couldn't reproduce with docker'ed Ubuntu 22.04: ``` FROM ubuntu:22.04 RUN apt-get update && apt-get install -y --no-install-recommends \ clang libc-dev make file git ca-certificates WORKDIR /work/ RUN git clone --depth...