Throughout, (mainly in fhandler*) fix remaining gcc 4.7 mismatch
warnings between regparm definitions and declarations. * smallprint.cc (__small_vswprintf): Conditionalize declaration and setting of l_opt for only x86_64. * spawn.cc (child_info_spawn::worker): Remove unused 'pid' variable. * thread.cc (verifyable_object_isvalid): Temporarily define as non-inline with gcc 4.7+, regardless of target.
This commit is contained in:
@@ -484,7 +484,9 @@ __small_vswprintf (PWCHAR dst, const WCHAR *fmt, va_list ap)
|
||||
while (*fmt)
|
||||
{
|
||||
unsigned int n = 0x7fff;
|
||||
#ifdef __x86_64__
|
||||
bool l_opt = false;
|
||||
#endif
|
||||
if (*fmt != L'%')
|
||||
*dst++ = *fmt++;
|
||||
else
|
||||
@@ -519,7 +521,9 @@ __small_vswprintf (PWCHAR dst, const WCHAR *fmt, va_list ap)
|
||||
len = len * 10 + (c - L'0');
|
||||
continue;
|
||||
case L'l':
|
||||
#ifdef __x86_64__
|
||||
l_opt = true;
|
||||
#endif
|
||||
continue;
|
||||
case L'c':
|
||||
case L'C':
|
||||
|
Reference in New Issue
Block a user