http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #16 from Jay 2010-11-07 04:20:47 UTC
---
I went with renaming the member to gen_lowerpart_, with underscore at the end.
There are no references to it except for the macro, it appears.
-bash-4.1$ CC -V
CC: Sun C++ 5.9 SunOS_sparc 2007/
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #15 from Jay 2010-11-07 04:13:30 UTC
---
hm..or maybe the Sun CC recurses here?
rtl.h:#define gen_lowpart rtl_hooks.gen_lowpart
maybe #undef gen_lowpower and use rtl_hooks.gen_lowpart?
or rename the member to gen_lowpower_hook?
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #14 from Jay 2010-11-07 04:03:13 UTC
---
../../gcc-4.5/gcc/combine.c", line 6561: Error: Unexpected type name
"rtl_hooks" encountered.
../../gcc-4.5/gcc/combine.c", line 6561: Error: Unexpected type name
"rtl_hooks" encountered.
so c
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45473
Jason Merrill changed:
What|Removed |Added
Status|NEW |RESOLVED
CC|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46340
Summary: internal compiler error: Segmentation fault building
LAPACK 3.1.1
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
C
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46339
Summary: Internal compiler error
Product: gcc
Version: 4.5.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
AssignedTo: unassig...@gcc.gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46338
--- Comment #1 from Zdenek Sojka 2010-11-07 02:15:43
UTC ---
Created attachment 22304
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22304
auto-reduced testcase
This testcase doen't fail with r165699, but the original one does fail.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46338
Summary: -fcompare-debug failure (length) with -O
-fprofile-generate
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Compone
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #13 from Jay 2010-11-07 02:04:14 UTC
---
gmpn_add/sub/cmp were because I have drastically slashed mpc/mpfr/gmp
dependency, and optimizations off here. That is fixed.
Now I can compile/link our cc1 analog!
That's all we use.
I can mayb
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #12 from Jay 2010-11-07 01:37:15 UTC
---
Huh, maybe enum bitfields are legal C++?
#if defined(__cplusplus)
#define ENUM_BITFIELD(TYPE, NAME, SIZE) enum TYPE NAME : SIZE
seems to work, so can go back to the 1 parameter version, and
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #11 from Jay 2010-11-07 01:19:03 UTC
---
fyi, even with modern g++ 4.0, there are many warnings, e.g.:
./../gcc-4.5/gcc/postreload.c: In function ‘void reload_cse_regs_1(rtx_def*)’:
../../gcc-4.5/gcc/postreload.c:199: warning: passin
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #10 from Jay 2010-11-07 01:10:56 UTC
---
Undefined first referenced
symbol in file
__gmpn_add
/home/jkrell/dev2/cm3/m3-sys/m3cc/SOLsun/./gmp/.libs/libgmp.a(ad
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46337
Summary: dse.c:replace_inc_dec mis-use of gen_int_mode
Product: gcc
Version: 4.4.5
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: rtl-optimization
Assig
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #9 from Jay 2010-11-07 00:50:02 UTC
---
Here is an example that occurs many times, warning only:
extern "C" { void F1(void); }
void (*F2)(void) = F1;
-bash-4.1$ /usr/bin/CC -c $HOME/1.cpp
"/home/jkrell/1.cpp", line 5: Warning (Anac
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #8 from Jay 2010-11-07 00:30:29 UTC
---
an example of the gcc_unreachable problem that I don't think I caused:
"../../gcc-4.5/gcc/targhooks.c", line 85: Error:
"default_legitimate_address_p(machine_mode, rtx_def*, bool)" is expected
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #7 from Jay 2010-11-07 00:28:39 UTC
---
rtl.c:
"../../gcc-4.5/gcc/rtl.def", line 82: Error: Badly formed constant expression.
"../../gcc-4.5/gcc/rtl.def", line 89: Error: "}" expected instead of "sizeof".
rtl.c, change:
#define DEF
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #6 from Jay 2010-11-07 00:15:05 UTC
---
trying..
#if defined(__cplusplus) && !defined(__GNUC__) && defined(__sun)
#undef HAVE_PUTC_UNLOCKED
#undef HAVE_PUTCHAR_UNLOCKED
#undef HAVE_GETC_UNLOCKED
#undef HAVE_GETCHAR_UNLOCKED
#endif
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #5 from Jay 2010-11-07 00:07:31 UTC
---
Huh, I misread and I don't see why _flsbuf/__flsbuf/_filbuf/__filbuf aren't
declared.
Anyway, I'll try:
# if defined(HAVE_PUTC_UNLOCKED) && (!defined(__cplusplus) || defined(__GNUC__)
|| !defin
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #4 from Jay 2010-11-06 23:53:47 UTC
---
"../../gcc-4.5/gcc/opts.c", line 1233: Error: The function "__flsbuf" must have
a prototype.
"../../gcc-4.5/gcc/opts.c", line 1350: Error: The function "__flsbuf" must have
a prototype.
#if (__
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46336
Summary: [C++0X] ICE on invalid: in register_constexpr_fundef,
at cp/semantics.c:5571
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46335
Summary: [C++0X] ICE: in gimple_add_tmp_var, at gimplify.c:701
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43384
Simon Martin changed:
What|Removed |Added
Known to work||4.6.0
Summary|[4.3/4.4/4.5/4.6
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43384
--- Comment #6 from Simon Martin 2010-11-06
21:58:53 UTC ---
Author: simartin
Date: Sat Nov 6 21:58:50 2010
New Revision: 166408
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166408
Log:
gcc/
2010-11-16 Simon Martin
PR c/43384
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #3 from Richard Guenther 2010-11-06
20:48:33 UTC ---
Note that it might be more useful to test the current trunk (not that the
issues are likely to have been addressed there already).
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46309
Steven Fuerst changed:
What|Removed |Added
CC||svfuerst at gmail dot com
--- Comment #2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
--- Comment #5 from Dominique d'Humieres 2010-11-06
18:48:38 UTC ---
> Fixed with r166405. Closing.
Thanks for the quick fix.
An entry in gcc-patc...@gcc.gnu.org for the patch may be missing.
Dominique
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45332
--- Comment #1 from Nathan Froyd 2010-11-06
18:42:08 UTC ---
Author: froydnj
Date: Sat Nov 6 18:41:57 2010
New Revision: 166406
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166406
Log:
gcc/cp/
PR c++/45332
* parser.c (cp_lexer_
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
janus at gcc dot gnu.org changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
--- Comment #3 from janus at gcc dot gnu.org 2010-11-06 17:58:14 UTC ---
Author: janus
Date: Sat Nov 6 17:58:11 2010
New Revision: 166405
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166405
Log:
2010-11-06 Janus Weil
PR fortran/4
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46326
Richard Guenther changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46316
Richard Guenther changed:
What|Removed |Added
Keywords||wrong-code
Target Milestone|---
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
Richard Guenther changed:
What|Removed |Added
Target Milestone|--- |4.6.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #2 from joseph at codesourcery dot com 2010-11-06 17:24:11 UTC ---
On Sat, 6 Nov 2010, jay.krell at cornell dot edu wrote:
> One person's machine has g++ 3.3.
In the discussions of what the requirements would be for building with
C+
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46334
Summary: C++ compiler gets g++ switch even if it isn't g++
Product: gcc
Version: 4.5.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: other
AssignedTo:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #1 from Jay 2010-11-06 16:25:26 UTC
---
also a bunch of gcc options are being passed to CC, odd
I set CXX=/usr/bin/CC to get here.
CC: Warning: Option -Wno-long-long passed to ld, if ld is invoked, ignored
otherwise
source='../../gc
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37053
--- Comment #29 from Thorsten Glaser 2010-11-06 16:25:00
UTC ---
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602099#20
in case someone’s interested…
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46331
--- Comment #1 from Jerry DeLisle 2010-11-06
16:09:30 UTC ---
I should add that if rand is the only function that acts like this, then this
is not of much value. While just playing around, this translates as expected.
(Nice short -fdump-tree-ori
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
janus at gcc dot gnu.org changed:
What|Removed |Added
Keywords||ice-on-valid-code
S
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
Summary: problems with configure -enable-build-with-cxx
-disable-bootstrap
Product: gcc
Version: 4.5.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
C
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46332
Summary: __cxa_demangle yields excess parentheses for function
types
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Compo
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46331
Summary: Compilation time long with simple function in array
constructor
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
janus at gcc dot gnu.org changed:
What|Removed |Added
Summary|[4.6 Regression] ICE after |[4.6 Regression] [OOP] ICE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46313
janus at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46314
Jorn Wolfgang Rennecke changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46314
--- Comment #1 from Jorn Wolfgang Rennecke
2010-11-06 15:04:58 UTC ---
Author: amylaar
Date: Sat Nov 6 15:04:52 2010
New Revision: 166404
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166404
Log:
PR middle-end/46314
gcc:
* targe
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46330
Summary: [4.6 Regression] ICE after revision 166368
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
AssignedTo: unass
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46329
Summary: ICE on ARM for __attribute__ ((vector_size (8 *
sizeof(int operations
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20518
Georg Lay changed:
What|Removed |Added
CC||avr at gjlay dot de
--- Comment #2 from Georg
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46244
--- Comment #9 from Tobias Burnus 2010-11-06
13:00:27 UTC ---
(In reply to comment #8)
> (In reply to comment #7)
> > type b
> > sequence
> > class(a), pointer :: pa
> > end type b
>
> That's invalid per F
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44501
Eric Weddington changed:
What|Removed |Added
AssignedTo|unassigned at gcc dot |eweddington at gcc dot
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44501
Georg Lay changed:
What|Removed |Added
CC||avr at gjlay dot de
--- Comment #4 from Georg
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37895
Georg Lay changed:
What|Removed |Added
CC||avr at gjlay dot de,
|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46328
janus at gcc dot gnu.org changed:
What|Removed |Added
Summary|[OOP] ICE with class in |[OOP] type-bound operator
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29524
Georg Lay changed:
What|Removed |Added
CC||avr at gjlay dot de
--- Comment #23 from Geor
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44981
Iain Sandoe changed:
What|Removed |Added
CC||iains at gcc dot gnu.org
--- Comment #3 fro
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44981
--- Comment #2 from Iain Sandoe 2010-11-06 10:48:21
UTC ---
Author: iains
Date: Sat Nov 6 10:48:18 2010
New Revision: 166398
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166398
Log:
NS/CF String format syntax parsing.
gcc:
PR ta
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46316
--- Comment #6 from Eric Botcazou 2010-11-06
10:05:21 UTC ---
> It is very likely caused by revision 166280:
>
> http://gcc.gnu.org/ml/gcc-cvs/2010-11/msg00166.html
Indeed, this apparently exposed a bug in the scalar evolution analysis invoked
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46328
Summary: ICE with class in parentheses
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P3
Component: fortran
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46327
--- Comment #7 from Dominique d'Humieres 2010-11-06
09:25:28 UTC ---
> I am against implementing support for this => WONTFIX.
See
http://gcc.gnu.org/onlinedocs/gfortran/Extensions-not-implemented-in-GNU-Fortran.html#Extensions-not-implemented-in
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46327
Steven Bosscher changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46221
Uros Bizjak changed:
What|Removed |Added
CC||ubizjak at gmail dot com
--- Comment #9 fro
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46327
--- Comment #5 from Jan Kratochvil
2010-11-06 07:18:24 UTC ---
(In reply to comment #3)
> If they need to debug their code, then they should use Intel's debugger.
That is less comfortable for them than GDB.
(In reply to comment #4)
> Fortran c
62 matches
Mail list logo