This is the mail archive of the gcc-regression@gcc.gnu.org mailing list for the GCC project.


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

GCC build failed for 2 targets with your patch on 2001-08-27T20:30:01Z.


With your recent patch, GCC does not compile on:
 powerpc-eabisim native
Attached is build output for those targets.

The last time the regression tests were run, GCC did not compile either,
so the problem might not be caused by your patch.

For more information, see <http://www.cygnus.com/~geoffk/gcc-regression/>.
ChangeLog entries since last run on 2001-08-27T20:07:35Z:
--- /maat/heart/tbox/changelog_mail/gcc/gcc/ChangeLog	Mon Aug 27 13:07:43 2001
+++ gcc/gcc/ChangeLog	Mon Aug 27 13:30:09 2001
@@ -1,3 +1,8 @@
+2001-08-27  Fred Fish  <fnf@be.com>
+
+	* ginclude/stddef.h: Fix typo, __SIZE__TYPE__ should be
+	__SIZE_TYPE__.
+
 2001-08-27  Geoffrey Keating  <geoffk@redhat.com>
 
 	* reload.c (find_reloads_toplev): Back out this change:

ChangeLog entries between 2001-08-27T20:07:35Z and the last time everything
passed, on 2001-08-25T19:21:30Z:
--- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog	Sat Aug 25 10:15:12 2001
+++ gcc/gcc/ChangeLog	Mon Aug 27 13:07:43 2001
@@ -1,3 +1,244 @@
+2001-08-27  Geoffrey Keating  <geoffk@redhat.com>
+
+	* reload.c (find_reloads_toplev): Back out this change:
+
+	Wed Jul 26 19:44:05 2000   Hans-Peter Nilsson  <hp@axis.com>
+
+	* reload.c (find_reloads_toplev): Reload a paradoxical subreg of a
+	mem if the address is a mode_dependent_address_p.
+
+2001-08-27  Vladimir Makarov  <vmakarov@touchme.toronto.redhat.com>
+
+        * rtl.def (DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT, EXCLUSION_SET,
+	PRESENCE_SET, ABSENCE_SET, DEFINE_BYPASS, DEFINE_AUTOMATON,
+	AUTOMATA_OPTION, DEFINE_RESERVATION, DEFINE_INSN_RESERVATION): New
+	RTL constructions.
+	
+	* genattr.c (main): New variable num_insn_reservations.  Increase
+	it if there is DEFINE_INSN_RESERVATION.  Output automaton based
+	pipeline hazard recognizer interface.
+
+	* genattrtab.h: New file.
+	
+	* genattrtab.c: Include genattrtab.h.
+	(attr_printf, check_attr_test, make_internal_attr,
+	make_numeric_value): Move protypes into genattrtab.h.  Define them
+	as external.
+	(num_dfa_decls): New global variable.
+	(main): Process DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT,
+	DEFINE_BYPASS, EXCLUSION_SET, PRESENCE_SET, ABSENCE_SET,
+	DEFINE_AUTOMATON, AUTOMATA_OPTION, DEFINE_RESERVATION,
+	DEFINE_INSN_RESERVATION.  Call expand_automata and write_automata.
+
+	* genautomata.c: New file.
+
+	* rtl.h (LINK_COST_ZERO, LINK_COST_FREE): Remove them.
+	
+        * sched-int.h: (curr_state): Add the external definition for
+	automaton pipeline interface.
+	(haifa_insn_data): Add comments for members blockage and units.
+	
+	* target-def.h (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
+	TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
+	TARGET_SCHED_DFA_PRE_CYCLE_INSN,
+	TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
+	TARGET_SCHED_DFA_POST_CYCLE_INSN,
+	TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
+	TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): New
+	macros.
+	(TARGET_SCHED): Use the new macros.
+
+	* target.h (use_dfa_pipeline_interface, init_dfa_pre_cycle_insn,
+	dfa_pre_cycle_insn, init_dfa_post_cycle_insn, dfa_post_cycle_insn,
+	first_cycle_multipass_dfa_lookahead, init_dfa_bubbles,
+	dfa_bubble): New members in gcc_target.sched.
+	
+        * haifa-sched.c (insert_schedule_bubbles_p): New variable.
+	(MAX_INSN_QUEUE_INDEX): New macro for automaton interface.
+	(insn_queue): Redefine it as pointer to array.
+	(NEXT_Q, NEXT_Q_AFTER): Use MAX_INSN_QUEUE_INDEX instead of
+	INSN_QUEUE_SIZE.
+	(max_insn_queue_index_macro_value): New variable.
+	(curr_state, dfa_state_size, ready_try): New varaibles for
+	automaton interface.
+	(ready_element, ready_remove, max_issue): New function prototypes
+	for automaton interface.
+	(choose_ready): New function prototype.
+	(insn_unit, blockage_range): Add comments.
+	(unit_last_insn, unit_tick, unit_n_insns): Define them for case
+	FUNCTION_UNITS_SIZE == 0.
+	(insn_issue_delay, actual_hazard_this_instance, schedule_unit,
+	actual_hazard, potential_hazard): Add comments.
+	(insn_cost): Use cost -1 as undefined value.  Remove
+	LINK_COST_ZERO and LINK_COST_FREE.  Add new code for automaton
+	pipeline interface.
+	(ready_element, ready_remove): New functions for automaton
+	interface.
+	(schedule_insn): Add new code for automaton pipeline interface.
+	(queue_to_ready): Add new code for automaton pipeline interface.
+	Use MAX_INSN_QUEUE_INDEX instead of INSN_QUEUE_SIZE.
+	(debug_ready_list): Print newline when the queue is empty.
+	(max_issue): New function for automaton pipeline interface.
+	(choose_ready): New function.
+	(schedule_block): Add new code for automaton pipeline interface.
+	Print ready list before scheduling each insn.
+	(sched_init): Add new code for automaton pipeline interface.
+	Initiate insn cost by -1.
+	(sched_finish): Free the current automaton state and finalize
+	automaton pipeline interface.
+	
+	* sched-rgn.c: Include target.h.
+	(init_ready_list, new_ready, debug_dependencies): Add new code for
+	automaton pipeline interface.
+
+	* sched-vis.c: Include target.h.
+	(get_visual_tbl_length): Add code for automaton interface.
+	(target_units, print_block_visualization):  Add comments.
+	
+        * Makefile.in (GETRUNTIME, HASHTAB, HOST_GETRUNTIME, HOST_HASHTAB,
+	USE_HOST_GETRUNTIME, USE_HOST_HASHTAB, HOST_VARRAY): New variables.
+	(sched-rgn.o, sched-vis.o): Add new dependency file target.h.
+	(getruntime.o, genautomata.o): New entries.
+	(genattrtab.o): Add new dependency file genattrtab.h.
+	(genattrtab): Add new dependencies.  Link it with `libm.a'.
+	(getruntime.o, hashtab.o): New entries for canadian cross.
+
+	* doc/md.texi: Description of automaton based model.
+	
+	* doc/tm.texi (TARGET_SCHED_ISSUE_RATE, TARGET_SCHED_ADJUST_COST):
+	Add comments.
+	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
+	TARGET_SCHED_DFA_PRE_CYCLE_INSN,
+	TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
+	TARGET_SCHED_DFA_POST_CYCLE_INSN,
+	TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
+	TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
+	TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): The new
+	hook descriptions.
+	(TRADITIONAL_PIPELINE_INTERFACE, DFA_PIPELINE_INTERFACE,
+	MAX_DFA_ISSUE_RATE): New macro descriptions.
+	
+	* doc/contrib.texi: Add dfa based scheduler contribution.
+
+	* doc/gcc.texi: Add more information about genattrtab.
+
+2001-08-27  Diego Novillo  <dnovillo@redhat.com>
+
+	* flow.c (flow_loop_dump): Do not display insn UIDs if this is not
+	an RTL basic block.
+
+2001-08-27  Richard Henderson  <rth@redhat.com>
+
+	* function.c (expand_function_end): Don't init arg_pointer_save_area.
+	(get_arg_pointer_save_area): New.  Create an init it here.
+	(fix_lexical_addr): Use it.
+	* function.h: Declare it.
+	* builtins.c (expand_builtin_setjmp_receiver): Use it.
+	* stmt.c (expand_nl_goto_receiver): Use it.
+
+2001-08-27  Richard Henderson  <rth@redhat.com>
+
+	* final.c (final_scan_insn): Don't enter APP_ON mode for
+	empty asm strings.
+
+	* dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Use proper
+	alignment for assemble_integer for DW_EH_PE_aligned.
+	* except.c (output_function_exception_table): Likewise.
+
+2001-08-26  Andreas Jaeger  <aj@suse.de>
+
+	* c-tree.h: Add prototyp for c_sizeof_nowarn.
+
+2001-08-25 Dan Nicolaescu  <dann@ics.uci.edu>
+  
+	* ssa-ccp.c (ssa_const_prop): Free ssa_edges.
+
+2001-08-27  Alan Modra  <amodra@bigpond.net.au>
+
+	* config/rs6000/rs6000.c (mask_operand): Rewrite without
+	bit-shifting loop.
+	(mask64_operand): Likewise.
+	(rldic_operand): Delete.
+	(includes_lshift64_p): Delete.
+	(includes_rldic_lshift_p): New function.
+	(includes_rldicr_lshift_p): New function.
+	(print_operand): Don't call rldic_operand in case 'W'.
+	* config/rs6000/rs6000-protos.h (rldic_operand): Remove.
+	(includes_lshift64_p): Remove.
+	(includes_rldic_lshift_p): Declare.
+	(includes_rldicr_lshift_p): Declare.
+	* config/rs6000/rs6000.h (PREDICATE_CODES): Remove rldic_operand.
+	* config/rs6000/rs6000.md <ashldi3_internal 64 bit patterns>:
+	Replace match_operand rldic_operand predicate with
+	const_int_operand.  Replace includes_lshift64_p condition with
+	includes_rldic_lshift_p.
+	<ashldi3_internal 64 bit rldicr patterns>: New.
+
+2001-08-27  Andreas Jaeger  <aj@suse.de>
+
+	* emit-rtl.c: Use VA_OPEN/VA_CLOSE/VA_FIXEDARG throughout.
+	* errors.c: Likewise.
+	* final.c: Likewise.
+	* dwarf2asm.c: Likewise.
+	* doprint.c (checkit): Likewise.
+	* diagnostic.c: Likewise.
+	* collect2.c: Likewise.
+	* calls.c: Likewise.
+	* c-semantics.c (build_stmt): Likewise.
+	* c-format.c (status_warning): Likewise.
+	* c-errors.c (pedwarn_c99): Likewise.
+	* builtins.c (validate_arglist): Likewise.
+	* config/pj/pj.c (pj_printf): Likewise.
+	* fix-header.c: Likewise.
+	* gcc.c: Likewise.
+	* gcov.c (fnotice): Likewise.
+	* gensupport.c (message_with_line): Likewise.
+	* mips-tfile.c: Likewise.
+	* protoize.c (notice): Likewise.
+	* read-rtl.c (fatal_with_file_and_line): Likewise.
+	* rtl-error.c: Likewise.
+	* tradcpp.c: Likewise.
+	* tree.c: Likewise.
+	* cp/tree.c (build_min_nt): Likewise.
+	(build_min): Likewise.
+	* cp/lex.c: Likewise.
+	* cp/errfn.c: Likewise.
+	* cp/rtti.c (create_pseudo_type_info): Likewise.
+
+Sun Aug 26 20:25:44 2001  Denis Chertykov  <denisc@overta.ru>
+
+	* df.c (df_uses_record): Return after recording all uses
+	in ASM_OPERANDS.
+
+2001-08-26  Daniel Berlin  <dan@cgsoftware.com>
+
+	* df.c (df_insn_modify): Realloc the INSN table here, if
+	necessary, here, too.
+
+2001-08-26  Aldy Hernandez  <aldyh@redhat.com>
+
+	* config/mips/mips.c (mips_function_value): Handle complex return
+	values.
+
+2001-08-25  Hans-Peter Nilsson  <hp@bitrange.com>
+
+	* reload1.c (reload): Make all entries in reg_equiv_memory_loc
+	unshared.
+	* reload.c (make_memloc): Copy result if it is still
+	reg_equiv_memory_loc[regno] on return.
+	(subst_reloads) [ENABLE_CHECKING]: Check that none of
+	reg_equiv_constant, reg_equiv_memory_loc, reg_equiv_address and
+	reg_equiv_mem are modified by the substitutions.
+
+Sat Aug 25 23:07:35 CEST 2001  Jan Hubicka  <jh@suse.cz>
+
+	* predict.c (expensive_function_p): New.
+	* rtl.h (expensive_function_p): Declare.
+	* i386.c (FAST_PROLOGUE_INSN_COUNT): New constant.
+	(use_fast_prologue_epilogue): New static variable.
+	(expand_prologue): Set it; emit short prologues if unset.
+	(expand_epilogue): Likewise.
+
 2001-08-22  Geoffrey Keating  <geoffk@redhat.com>
 
 	* config.gcc: Add stormy16-*-elf case.
--- /maat/heart/tbox/changelog_pass/gcc/gcc/java/ChangeLog	Fri Aug 24 11:35:50 2001
+++ gcc/gcc/java/ChangeLog	Mon Aug 27 08:53:35 2001
@@ -1,3 +1,13 @@
+2001-08-24  Alexandre Petit-Bianco  <apbianco@redhat.com>
+
+	* parse.y (check_deprecation): Handle TYPE_DECL in a special case,
+	don't report anything but deprecated class when marked so. Handle
+	VAR_DECL.
+	(patch_method_invocation): Check deprecation on methods and types.
+	(patch_binop): code becomes an enum tree_code, added default: to
+	switch to handle that. Detect division by zero, try to fold and
+	return before using a subroutine.
+
 2001-08-23  Alexandre Petit-Bianco  <apbianco@redhat.com>
 
 	* jcf-parse.c (yyparse): Set magic to 0, don't issue error for a
--- /maat/heart/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog	Sat Aug 25 12:21:44 2001
+++ gcc/gcc/testsuite/ChangeLog	Mon Aug 27 13:07:52 2001
@@ -1,3 +1,7 @@
+2001-08-25  Aldy Hernandez  <aldyh@redhat.com>
+
+        * gcc.dg/asm-names.c (ymain): New.
+
 2001-08-22  Geoffrey Keating  <geoffk@redhat.com>
 
 	* gcc.c-torture/compile/961203-1.x: Mark unsupported by stormy16.
--- /maat/heart/tbox/changelog_pass/gcc/include/ChangeLog	Thu Aug 23 06:51:05 2001
+++ gcc/include/ChangeLog	Mon Aug 27 13:07:52 2001
@@ -1,3 +1,7 @@
+2001-08-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+	* ansidecl.h (VA_OPEN, VA_CLOSE): Allow multiple uses.
+
 2001-08-23  Lars Brinkhoff  <lars@nocrew.org>
 
 	* dyn-string.h, fibheap.h, partition.h, sort.h, splay-tree.h:
--- /maat/heart/tbox/changelog_pass/gcc/libiberty/ChangeLog	Thu Aug 23 08:57:31 2001
+++ gcc/libiberty/ChangeLog	Mon Aug 27 13:07:53 2001
@@ -1,3 +1,7 @@
+2001-08-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+	* concat.c (concat): Use VPARAMS, VA_OPEN, VA_FIXEDARG & VA_CLOSE.
+
 2001-08-23  Ulrich Drepper  <drepper@redhat.com>
 
 	* regex.c (truncate_wchar): Use wcrtomb not wctomb.
--- /maat/heart/tbox/changelog_pass/gcc/libstdc++-v3/ChangeLog	Fri Aug 24 15:50:27 2001
+++ gcc/libstdc++-v3/ChangeLog	Mon Aug 27 13:07:54 2001
@@ -1,3 +1,11 @@
+2001-08-27  Phil Edwards  <pme@sources.redhat.com>
+
+	PR libstdc++/4143
+	* acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO):  Handle enable/disable
+	correctly for version-specific-runtime-libs.
+	* aclocal.m4:  Regenerate.
+	* configure:  Regenerate.
+
 2001-08-24  Loren J. Rittle  <ljrittle@acm.org>
 
 	* config/cpu/i386/bits/limits.h (__glibcpp_long_double_bits): Only
--- /maat/heart/tbox/changelog_pass/gcc/libjava/ChangeLog	Fri Aug 24 11:36:01 2001
+++ gcc/libjava/ChangeLog	Sun Aug 26 05:23:33 2001
@@ -1,3 +1,32 @@
+2001-08-26  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
+
+	* name-finder.cc (lookup): Ignore a null dli_fname from dladdr.
+
+	* Makefile.am: New friends for java/lang/Thread.h.
+	* prims.cc (runFirst): Removed.
+	(JvRunMain): Merged into _Jv_RunMain. Now just calls that.
+	(_Jv_RunMain): Now takes either a klass or class name parameter.
+	Create a gnu.gcj.runtime.FirstThread and attach the native thread
+	to that, then run it using _Jv_ThreadRun. Remove special handling of
+	jar files, instead pass is_jar parameter through to FirstThread.
+	* gcj/javaprims.h: Add prototypes for _Jv_ThreadRun and new variant
+	of _Jv_AttachCurrentThread.
+	* gnu/gcj/runtime/FirstThread.java (FirstThread): Now extends Thread.
+	(run): New method. Take care of looking up main class manifest 
+	attribute and calling forName if neccessary. Then call call_main.
+	(call_main): New native method.
+	* gnu/gcj/runtime/natFirstThread.cc (call_main): New function, code 
+	relocated from prims.cc. Look up and call main method. 
+	* java/lang/Thread.java (run_): Removed.
+	* java/lang/natThread.cc (run_): Renamed to...
+	(_Jv_ThreadRun): this. JVMPI notification code moved to ...
+	(_Jv_NotifyThreadStart): here. New function.
+	(countStackFrames, destroy, resume, suspend, stop): Throw
+	UnsupportedOperationExceptions rather than JvFail'ing.
+	(_Jv_AttachCurrentThread): New variant takes a Thread argument.
+	Existing version wraps new variant.
+	
+
 2001-08-23  Tom Tromey  <tromey@redhat.com>
 
 	* java/lang/reflect/Field.java (toString): Use
--- /maat/heart/tbox/changelog_pass/gcc/libjava/testsuite/ChangeLog	Fri Aug 17 15:39:48 2001
+++ gcc/libjava/testsuite/ChangeLog	Mon Aug 27 06:45:17 2001
@@ -1,3 +1,7 @@
+2001-08-24  Alexandre Petit-Bianco  <apbianco@redhat.com>
+
+	* libjava.lang/KeepInline.out: Fixed content.
+
 2001-08-17  Alexandre Petit-Bianco  <apbianco@redhat.com>
 
 	* libjava.compile/XercesBug.java: New file.
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4328: warning: `allof_index' might be used uninitialized in this function
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4370: warning: `oneof' might be used uninitialized in this function
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4372: warning: `oneof_index' might be used uninitialized in this function
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c: In function `transform_3':
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4424: warning: `oneof' might be used uninitialized in this function
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4425: warning: `oneof_index' might be used uninitialized in this function
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4473: warning: `oneof' might be used uninitialized in this function
/maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c:4474: warning: `oneof_index' might be used uninitialized in this function
gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/varray.c -o varray.o
rm -f getruntime.c
ln -s /maat/heart/tbox/cvs-gcc/gcc/gcc/../libiberty/getruntime.c getruntime.c
gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include getruntime.c
gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H -DGENERATOR_FILE  -o genattrtab \
 genattrtab.o genautomata.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o print-rtl.o errors.o varray.o ` case "getruntime.o" in ?*) echo getruntime.o ;; esac ` ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` -lm
./genattrtab /maat/heart/tbox/cvs-gcc/gcc/gcc/config/rs6000/rs6000.md > tmp-attrtab.c
All other genattrtab stuff...done
Forming and outputing automata tables...make[1]: *** [s-attrtab] Error 139
make[1]: Leaving directory `/maat/heart/tbox/powerpc-eabisim/build/gcc'
make: *** [all-gcc] Error 2
+ exit 1
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/graph.c -o graph.o
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/haifa-sched.c -o haifa-sched.o
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/hash.c -o hash.o
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/ifcvt.c -o ifcvt.o
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/genattrtab.c
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/genautomata.c
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include /maat/heart/tbox/cvs-gcc/gcc/gcc/varray.c -o varray.o
rm -f getruntime.c
ln -s /maat/heart/tbox/cvs-gcc/gcc/gcc/../libiberty/getruntime.c getruntime.c
gcc -c  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H    -I. -I. -I/maat/heart/tbox/cvs-gcc/gcc/gcc -I/maat/heart/tbox/cvs-gcc/gcc/gcc/. -I/maat/heart/tbox/cvs-gcc/gcc/gcc/config -I/maat/heart/tbox/cvs-gcc/gcc/gcc/../include getruntime.c
gcc  -DIN_GCC    -g  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_CONFIG_H -DGENERATOR_FILE  -o genattrtab \
 genattrtab.o genautomata.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o print-rtl.o errors.o varray.o ` case "getruntime.o" in ?*) echo getruntime.o ;; esac ` ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` -lm
./genattrtab /maat/heart/tbox/cvs-gcc/gcc/gcc/config/i386/i386.md > tmp-attrtab.c
All other genattrtab stuff...done
Forming and outputing automata tables...make[2]: *** [s-attrtab] Error 139
make[2]: Leaving directory `/maat/heart/tbox/native/build/gcc'
make[1]: *** [stage1_build] Error 2
make[1]: Leaving directory `/maat/heart/tbox/native/build/gcc'
make: *** [bootstrap] Error 2
+ exit 1

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