From: Nicholas Nethercote Date: Tue, 22 Jun 2004 13:19:21 +0000 (+0000) Subject: Remove two no-longer-used global vars. X-Git-Tag: svn/VALGRIND_2_1_2~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5292d2c44e23f1268f337ad4158bb98c0189192;p=thirdparty%2Fvalgrind.git Remove two no-longer-used global vars. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2432 --- diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c index 57463fbefa..6b5f701598 100644 --- a/coregrind/vg_main.c +++ b/coregrind/vg_main.c @@ -161,11 +161,6 @@ Char** VG_(client_envp); /* Our signal delivery stack. */ UInt VG_(sigstack)[VG_SIGSTACK_SIZE_W]; -/* Saving stuff across system calls. */ -__attribute__ ((aligned (16))) -UInt VG_(real_sse_state_saved_over_syscall)[VG_SIZE_OF_SSESTATE_W]; -Addr VG_(esp_saved_over_syscall); - /* jmp_buf for fatal signals */ Int VG_(fatal_sigNo) = -1; Bool VG_(fatal_signal_set) = False;