CVSROOT: /cvs Module name: src Changes by: [email protected] 2014/09/23 11:59:25
Modified files:
sys/arch/amd64/stand/libsa: time.c
sys/arch/i386/stand/libsa: time.c
Log message:
Fix constraint.
We need a register here, and not a generic memory reference. We get lucky
with GCC that it chooses a register for "p", but we can't blame clang for
choosing a memory reference if we allow it to do so.
Pointed out by LLVM.
time.c:80:17: error: unexpected token in memory operand
ok kettenis@
