Closed
Bug 639897
Opened 14 years ago
Closed 13 years ago
Code coverage build fails in jsstr.cpp
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: paul.biggar, Unassigned)
References
()
Details
http://tinderbox.mozilla.org/showlog.cgi?tree=Testing&errorparser=unittest&logfile=1299323050.1299324259.9880.gz&buildtime=1299323050&buildname=Linux%20mozilla-central%20code%20coverage&fulltext=1
Problem is here:
https://hg.mozilla.org/mozilla-central/file/4e771e65764a/js/src/jsstr.cpp#l3274
I'm guessing the problem is that the line:
const JSString *const JSString::intStringTable[] = { R8(0) };
is missing:
#ifdef __GNUC__
__attribute__ ((aligned (8)))
#endif
Reporter | ||
Comment 1•14 years ago
|
||
I can't reproduce this on 32 bit linux. What version of gcc is /tools/gcc/bin/gcc?
Comment 2•14 years ago
|
||
It should be GCC 4.3.3.
Reporter | ||
Comment 3•13 years ago
|
||
FWIW, I couldn't reproduce this with stock 4.3.3 on linux, with the exact config from the log in comment 0.
Comment 4•13 years ago
|
||
We're on GCC 4.5 now, we'll see if this is WFM once bug 657396 is fixed.
Comment 5•13 years ago
|
||
The builds are successful, so I'd say so.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•