From 647925b260ed00034b0ca8c7598c92f6d28a3e99 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 29 Jan 2009 15:36:26 +0000 Subject: * sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define. (stackinfo_sub_sp): Define. --- include/alloca.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/alloca.h') diff --git a/include/alloca.h b/include/alloca.h index 7d243fd..9a4b5c7 100644 --- a/include/alloca.h +++ b/include/alloca.h @@ -55,8 +55,8 @@ extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const)); #else # define alloca_account(size, avar) \ ({ size_t s__ = (size); \ - avar += size__; \ - __alloca (size__); }) + avar += s__; \ + __alloca (s__); }) #endif #endif -- cgit v1.1