This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug math/14729] New: test-tgmath2.c exceeds variable tracking size limit


http://sourceware.org/bugzilla/show_bug.cgi?id=14729

             Bug #: 14729
           Summary: test-tgmath2.c exceeds variable tracking size limit
           Product: glibc
           Version: 2.17
            Status: NEW
          Severity: normal
          Priority: P2
         Component: math
        AssignedTo: unassigned@sourceware.org
        ReportedBy: markus@trippelsdorf.de
    Classification: Unclassified


With gcc-4.8 I get (after 1:40 minutes):

test-tgmath2.c: In function âtestâ:             
test-tgmath2.c:93:1: note: variable tracking size limit exceeded with
-fvar-tracking-assignments, retrying without
 test (const int Vint4, const long long int Vllong4)
 ^
test-tgmath2.c:93:1: note: variable tracking size limit exceeded

(gcc-4.6 and gcc-4.7 compile quicker, but the error is the same)

Would it make sense to disabled var-tracking on this test-case?

diff --git a/math/Makefile b/math/Makefile
index 7759873..157d07b 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -126,7 +126,7 @@ CFLAGS-test-float.c = -fno-inline -ffloat-store
-fno-builtin -frounding-math
 CFLAGS-test-double.c = -fno-inline -ffloat-store -fno-builtin -frounding-math
 CFLAGS-test-ldouble.c = -fno-inline -ffloat-store -fno-builtin -frounding-math
 CFLAGS-test-tgmath.c = -fno-builtin
-CFLAGS-test-tgmath2.c = -fno-builtin
+CFLAGS-test-tgmath2.c = -fno-builtin -fno-var-tracking
 CFLAGS-test-tgmath-ret.c = -fno-builtin
 CFLAGS-test-powl.c = -fno-builtin
 CFLAGS-test-test-fenv.c = -frounding-math

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]