https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123010

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
```
#include <stdint.h>

#define N 2u

uint32_t mulu(uint32_t a) {
    return a * N;
}

int32_t muls(int32_t a) {
    return a * N;
}
```

The question is what does the ABI say about argument passing and returns?

Reply via email to