beh...@converseincode.com writes:

> +#define current_stack_pointer ({ \
> +     unsigned long current_sp; \
> +     asm ("mov %0, r13" : "=r" (current_sp)); \
> +     current_sp; \
> +})

Why do you use 'r13' rather than the more common 'sp' alias?

-- 
Måns Rullgård
m...@mansr.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to