diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-03-06 21:06:10 -0800 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-17 22:56:47 +0200 |
commit | ee9e5f92b659081a9d889ef16f91a070b8c36024 (patch) | |
tree | bd7f160b4e470dcbb4e6eb4386bd1eb23cee96b5 /shell/ash_test | |
parent | 4ebcdf7396b8e19ddf4e8b12a84b186fcbccabb8 (diff) | |
download | busybox-ee9e5f92b659081a9d889ef16f91a070b8c36024.tar.gz |
networking: cc is not a register
gcc accepts
__asm__ ( "" : : : "%cc");
but cc is not a real register and clang does not like it.
networking/tls_pstm_montgomery_reduce.c:385:4: error: unknown register name '%cc' in asm
| INNERMUL;
| ^
The % syntax nominally goes before a register, in this case cc,
like "memory" isn't a true register it's just a way of specifying that
the condition code registers for the target are clobbered
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
0 files changed, 0 insertions, 0 deletions