GCC build of HEAD failed for native with your patch on 2004-05-27T09:44:27Z.

GCC regression checker geoffk@apple.com
Thu May 27 13:16:00 GMT 2004


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

The build failures are new.

For more information, see http://gcc.gnu.org/regtest/.

-------------- next part --------------
ChangeLog entries since last run on 2004-05-26T21:18:28Z:
--- /Users/regress/tbox/changelog_mail/gcc/gcc/ChangeLog	Wed May 26 14:19:22 2004
+++ gcc/gcc/ChangeLog	Thu May 27 02:45:18 2004
@@ -1,8 +1,70 @@
+2004-05-25  Paolo Bonzini  <bonzini@gnu.org>
+
+	* combine.c (gen_binary): Remove.
+	(known_cond, simplify_shift_const
+	find_split_point, combine_simplify_rtx,
+	simplify_if_then_else, simplify_set,
+	simplify_logical, expand_field_assignment,
+	extract_left_shift, force_to_mode,
+	if_then_else_cond, apply_distributive_law,
+	simplify_and_const_int, simplify_shift_const,
+	gen_lowpart_for_combine, simplify_comparison,
+	reversed_comparison): Replace with
+	simplify_gen_binary, simplify_gen_relational or
+	distribute_and_simplify_rtx.
+	(distribute_and_simplify_rtx): New function.
+	* simplify-rtx.c (simplify_binary_operation):
+	Use nonzero_bits to simplify ANDs where we are
+	turning off bits already known to be off in OP0.
+
+2004-05-27  Alan Modra  <amodra@bigpond.net.au>
+
+	PR target/14478
+	* config/rs6000/rs6000.c (reg_or_neg_short_operand): Don't allow zero.
+
+2004-05-27  Josef Zlomek  <zlomekj@suse.cz>
+
+	PR middle-end/14084
+	* emit-rtl.c (gen_rtx_REG_offset): Adjust the offset according
+	to size of decl.
+
+2004-05-26  Aldy Hernandez  <aldyh@redhat.com>
+
+	PR/14924
+	* config/rs6000/rs6000.c (spe_expand_stv_builtin): New.
+
+2004-05-26  Roger Sayle  <roger@eyesopen.com>
+
+	* tree.h: Fix comment typo.
+
+2004-05-27  Steven Bosscher  <stevenb@suse.de>
+
+	* gimplify.c (compare_case_labels): New function.
+	(gimplify_switch_expr): Sort case labels, and make sure the
+	last label in the label vector is the default case.
+	* tree-cfg.c (group_case_labels): New function.
+	(build_tree_cfg): Cleanup redundant labels and group case labels
+	before creating edges.
+	(cleanup_dead_labels): Handle GOTO_EXPRs.
+	(find_case_label_for_value): Use a binary search to find the
+	case label for the given value.
+	* tree-gimple.c: Mention that labels are sorted, and that the
+	last label must be the default.
+
+2004-05-27  Jan Hubicka  <jh@suse.cz>
+
+	* cfgcleanup.c (try_optimize_cfg): Do not merge across jumptables.
+
+2004-05-27  Jan Hubicka  <jh@suse.cz>
+
+	* i386.md (UNSPECV_EH_RETURN): Kill.
+	(eh_return): Use jump_insn.
+	(eh_return_si, eh_return_di): Change pattern to jump instruction.
+
 2004-05-26  Jan Hubicka  <jh@suse.cz>
 
 	* cfgcleanup.c (try_forward_edges):  Do not check loop structure when
 	not loop optimizing.
-	(try_optimize_cfg): Do not merge across jumptables.
 
 2004-05-26  Jan Hubicka  <jh@suse.cz>
 
--- /Users/regress/tbox/changelog_mail/gcc/libjava/ChangeLog	Fri May 21 18:37:56 2004
+++ gcc/libjava/ChangeLog	Thu May 27 02:45:34 2004
@@ -1,3 +1,571 @@
+2004-05-25  David Jee  <djee@redhat.com>
+
+	* java/awt/Container.java
+	(remove): Set component's parent to null only after we removed the
+	component from its parent's layout manager.
+
+2004-05-25  David Jee  <djee@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java
+	(GtkComponentPeer): Set bounds regardless of whether awtComponent
+	is valid.
+	* gnu/java/awt/peer/gtk/GtkListPeer.java
+	(getSize): Change native method declaration.
+	(minimumSize): Pass visible row count into getSize().
+	(preferredSize): Likewise.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkListPeer.c
+	(Java_gnu_java_awt_peer_gtk_GtkListPeer_getSize): Use scroll window's
+	natural size. Use visible row count to determine the final height
+	value to return.
+
+2004-05-21  Graydon Hoare  <graydon@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GdkGraphics2D.java 
+	(setClip): Minor correction to order of operations.
+
+	* javax/swing/JScrollPane.java: Extend sketchy implementation.
+	* javax/swing/ScrollPaneLayout.java: Likewise.
+	* javax/swing/JViewPort.java: Likewise.
+	* javax/swing/ViewportLayout.java: Likewise.
+
+	* javax/swing/JComponent.java: Rewrite.
+	* javax/swing/RepaintManager.java: Likewise.
+
+	* javax/swing/JLayeredPane.java: Change validate() to revalidate().
+	* javax/swing/JList.java 
+	(setSelectedIndices):
+	(getSelectedIndices):
+	(getSelectedValues): New functions.
+	(getPreferredScrollableViewportSize): Return preferred size.
+	(getScrollableUnitIncrement):
+	(getScrollableBlockIncrement): Initial implementations.
+	* javax/swing/JRootPane.java: Clean up slightly.
+	(getUI):
+	(setUI):
+	(updateUI):
+	(getUIClassID):
+	(isValidateRoot): Add overrides from JComponent.
+	* javax/swing/JScrollBar.java: Set default orientation to VERTICAL.
+	* javax/swing/UIManager.java (getDimension): Return the dimension.
+
+	* javax/swing/plaf/basic/BasicButtonUI.java: Set component opaque.
+	* javax/swing/plaf/basic/BasicLabelUI.java: Likewise.
+	* javax/swing/plaf/basic/BasicMenuItemUI.java: Likewise.
+	* javax/swing/plaf/basic/BasicProgressBarUI.java: Likewise.
+	* javax/swing/plaf/basic/BasicSeparatorUI.java: Likewise.
+	* javax/swing/plaf/basic/BasicSliderUI.java: Likewise.
+	* javax/swing/plaf/basic/BasicTabbedPaneUI.java: Likewise.
+	* javax/swing/plaf/basic/BasicRootPaneUI.java: 
+	Likewise, and set background.
+	* javax/swing/plaf/basic/BasicListUI.java: 
+	Likewise, and improve a bit.
+	* javax/swing/plaf/basic/BasicScrollBarUI.java: 
+	Likewise, and adjust calculations.
+	* javax/swing/plaf/basic/BasicViewportUI.java:
+	Likewise, and improve a bit.
+	* javax/swing/plaf/basic/BasicLookAndFeel.java 
+	(Button.margin): Shrink.
+
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGlyphVector.c:
+	Hack to set horizontal always, workaround pango.
+
+	* jni/gtk-peer/gtkcairopeer.h: Change to match pattern API.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics2D.c:
+	Synchronize more often, check cairo status after ops,
+	handle changes to cairo pattern API, check for disposal.
+
+2004-05-21  Olga Rodimina  <rodimina@redhat.com>
+
+	* javax/swing/plaf/basic/BasicMenuItemUI.java:
+	(BasicMenuItemUI): Create propertyChangeListener.
+	(getPath):Implemented.
+	(installListeners): Add propertyChangeListener to menuItem.
+	(uninstallListeners): Remove propertyChangeListener from menuItem.
+	(update): Implemented.
+	* javax/swing/plaf/basic/BasicMenuUI.MouseInputHandler:
+	(mouseEntered): Take insets of popup menu into account when
+	calculating position of popup menu.	
+ 	
+2004-05-18  Olga Rodimina  <rodimina@redhat.com>
+
+	* Makefile.am: Added new file. 
+	* Makefile.in: Regenerate.
+	* javax/swing/JMenuBar.java:
+	Started implementation.
+	* javax/swing/JPopupMenu.java:
+	(setVisible): Fixed location of lightweight/mediumweight
+	popup menu.
+	(show): Fixed location of PopupMenu.
+	* javax/swing/plaf/basic/BasicMenuBarUI.java:
+	New file. UI Delegate for JMenuBar.
+	* javax/swing/plaf/basic/BasicMenuUI.MouseInputHandler:
+	(mouseEntered): Corrected position of the submenu.
+
+2004-05-18  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuPeer.c: Remove calls
+	to _gtk_accel_group_attach.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkPopupMenuPeer.c:
+	Likewise.
+
+	* gnu/java/awt/peer/gtk/GtkButtonPeer.java: Give gtkSetFont
+	package access.  Don't override setFont.
+	* gnu/java/awt/peer/gtk/GtkCheckboxPeer.java: Likewise.
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java: Give
+	gtkWidgetRequestFocus package access.
+	* gnu/java/awt/peer/gtk/GtkLabelPeer.java: Don't override
+	setFont.
+	* gnu/java/awt/peer/gtk/GtkListPeer.java: Override gtkSetFont.
+	Give gtkWidgetRequestFocus package access.
+	* gnu/java/awt/peer/gtk/GtkTextAreaPeer.java: Give
+	gtkWidgetRequestFocus package access.  Don't override setFont.
+	* gnu/java/awt/peer/gtk/GtkTextFieldPeer.java: Don't override
+	setFont.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c
+	(gtkSetLabel): Move call to gtk_bin_get_child into GDK critical
+	region.
+	(gtkSetFont): Likewise.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkListPeer.c (gtkSetFont):
+	Implement.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c
+	(gtkSetFont): Whitespace fix.
+
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c
+	(gtkWidgetSetUsize): Remove method.
+
+2004-05-18  David Jee  <djee@redhat.com>
+
+	* java/awt/image/MemoryImageSource.java
+	(newPixels(int,int,int,int,boolean)): Set only the specified
+	rectangle of pixels.
+	(newPixels(byte[],ColorModel,int,int)): Implement.
+	(newPixels(int[],ColorModel,int,int)): Implement.
+
+2004-05-18  Olga Rodimina  <rodimina@redhat.com>
+
+	* Makefile.am: Added new file.
+	* Makefile.in: Regenerate.
+	* javax/swing/JMenu.java: Started 
+	implementation.
+	* javax/swing/JPopupMenu.java:
+	(insert): If specified index is -1, then
+	add component at the end.
+	(isPopupTrigger): Reimplemented.
+	(JPopupMenu.LightWeightPopup): setBounds
+	of the lightWeightPopup before adding it 
+	to the layeredPane.
+	(javax/swing/plaf/basic/BasicIconFactory.java):
+	(getMenuArrowIcon): Implemented.
+	* javax/swing/plaf/basic/BasicMenuItemUI.java:
+	(getPreferredSize): Add size of the arrow icon 
+	if this menu item is instance of JMenu.
+	(paintMenuItem): Paint arrow icon if this 
+	menu item is a submenu.
+	* javax/swing/plaf/basic/BasicMenuUI.java:
+	New File. UI Delegate for JMenu.
+
+2004-05-17  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java (postKeyEvent):
+	Post KEY_TYPED events.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c
+	(generates_key_typed_event): Remove function.
+
+2004-05-17  Olga Rodimina  <rodimina@redhat.com>
+
+	* javax/swing/JRootPane.java
+	(JRootPane.RootLayout): Reimplemented to 
+	set bounds of contentPane and menuBar.
+	(setJMenuBar): Add menu bar to the layered pane.
+	(createLayeredPane): Set layout of layeredPane
+	to null.
+	* javax/swing/JLayeredPane.java:
+	(addImpl): Calculate index of the component in the
+	layeredPane according to the specified position within 
+	the layer.	
+
+2004-05-17  David Jee  <djee@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkImagePainter.java
+	(setPixels): Change color model to the default model after
+	converting pixels.
+	* java/awt/image/MemoryImageSource.java
+	(newPixels): Set only the specified rectangle of pixels.
+
+2004-05-13  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* libgcj.spec.in (lib): Add -l-java-awt -l-java-applet
+	-l-java-beans -l-javax-accessibility -l-javax-swing.
+
+	* java/awt/AWTEvent.java (toString): Print source's name rather
+	than the source itself.
+
+2004-05-12  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkToolkit.java (loadSystemColors): Make
+	native.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c
+	(gdk_color_to_java_color): New function.
+	* jni/gtk-peer/gtkpeer.h: Add SystemColor defines.
+
+2004-05-12  David Jee  <djee@redhat.com>
+
+	* java/awt/image/RGBImageFilter.java:
+	Initialize origmodel as null.
+	(makeColor): Fix pixel component order.
+	(filterRGBPixels): Fix pixel iteration.
+	(setPixels): Add extra checks for index color model. Convert pixels
+	to default color model if necessary.
+	(convertColorModelToDefault): New override method for byte pixels.
+	(convertColorModelToDefault): For int pixels, fix pixel iteration.
+	(makeColorbyDefaultCM): New override method for byte pixels.
+	(makeColorbyDefaultCM): For int pixel, add color model as argument.
+	(makeColor): Fix pixel component order.
+
+2004-05-11  Kim Ho  <kho@redhat.com>
+
+	* javax/swing/Box.java:
+	Comment out more parts of Box.Filler.
+
+2004-05-11  Kim Ho  <kho@redhat.com>
+
+	* javax/swing/Box.java:
+	Remove reference to AccessibleAWTComponent so
+	it compiles again.
+
+2004-05-10  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkListPeer.java,
+	jni/gtk-peer/gnu_java_awt_peer_gtk_GtkListPeer.c: Update
+	implementation of list peer to use GtkTreeView instead of
+	deprecated GtkCList.
+
+2004-05-07  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java
+	(gtkWidgetDispatchKeyEvent): Remove keyChar parameter.
+	(handleEvent): Remove keyChar argument to
+	gtkWidgetDispatchKeyEvent calls.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c: Fix
+	compiler warnings.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c: Likewise.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuPeer.c: Likewise.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c:
+	Likewise.
+
+2004-05-06  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java
+	(gtkWidgetRequestFocus): Mark protected.
+	(GtkComponentPeer): Only set the peer's bounds if its component
+	is valid.
+	* java/awt/Component.java (static): Set the default keyboard
+	focus manager.
+	(requestFocus(), requestFocus(boolean), requestFocusInWindow(),
+	requestFocusInWindow(temporary)): Don't request focus if the
+	component is not showing.  Get tree lock before traversing
+	component hierarchy.
+	* java/awt/DefaultKeyboardFocusManager.java (dispatchEvent):
+	Only set the global focus owner if it is not a Window.
+	(processKeyEvent): Consume keystrokes associated with the focus
+	traversal keystroke.
+	(focusPreviousComponent, focusNextComponent, upFocusCycle,
+	downFocusCycle): Call requestFocusInWindow instead of
+	requestFocus.
+	* java/awt/EventDispatchThread.java (run): Move setting of
+	default keyboard focus manager to Component.java.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c
+	(awt_keycode_to_keysym): New function.
+	(gtkWidgetDispatchKeyEvent): Finish implementation.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c
+	(pre_event_handler): Add FIXME comment.
+
+	* gnu/java/awt/peer/gtk/GtkTextAreaPeer.java,
+	jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c
+	(gtkWidgetRequestFocus): New method.
+	* java/awt/TextArea.java (TextArea): Set focus traversal keys to
+	disable Tab and Shift-Tab keystrokes.
+	(addNotify, appendText, insertText, replaceText): Simplify peer
+	retrieval code.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c
+	(connectSignals): Remove connections to "commit" signals.
+	Remove C++-style comments.
+
+	* gnu/java/awt/peer/gtk/GtkButtonPeer.java,
+	jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c
+	(handleEvent): Activate GTK button when the space bar key is
+	pressed.
+	(gtkActivate): New method.
+
+2004-05-06  David Jee  <djee@redhat.com>
+
+	* java/awt/image/CropImageFilter.java
+	(setPixels): Implement for byte array pixels.
+	* java/awt/image/ReplicateScaleFilter.java
+	(setPixels): Implement for byte array pixels.
+	(replicatePixels): Overload for byte array pixels.
+
+2004-05-06  Kim Ho  <kho@redhat.com>
+
+	* javax/swing/Box.java:
+	(getAccessibleContext): Return an instance of the 
+	correct class.
+
+2004-05-05  David Jee  <djee@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GdkGraphics.java
+	(drawImage): When component is null, use SystemColor.window as
+	the default bgcolor.
+	* gnu/java/awt/peer/gtk/GtkImage.java
+	(setPixels): We can avoid iterating through the pixel rows only
+	when height is 1.
+	* java/awt/Image.java
+	(getScaledInstance): Partially implement.
+	* java/awt/image/CropImageFilter.java
+	(setProperties): Fix "filter" property.
+	(setPixels): Implement.
+	* java/awt/image/ReplicateScaleFilter.java
+	(setDimensions): Use scaled dimensions.
+	(setPixels): Implement.
+	(replicatePixels): New method.
+
+2004-05-05  David Jee  <djee@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkImagePainter.java
+	(convertPixels): If either pixels or model is null, return null.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkImagePainter.c
+	(Java_gnu_java_awt_peer_gtk_GtkImagePainter_drawPixels): If jpixels
+	is null, do nothing and return.
+
+2004-05-03  Kim Ho  <kho@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkDialogPeer.java:
+	(getGraphics): Like GtkFramePeer, the Graphics
+	object needs to be translate to account for
+	window decorations.
+	(postMouseEvent): New method. Account for
+	translation.
+	(postExposeEvent): ditto.
+	* javax/swing/Box.java: Stubbed.
+	* javax/swing/JDialog.java: Ran through jalopy
+	to fix indentation.
+	(JDialog): Call SwingUtilities' getOwnerFrame
+	for null owners.
+	(setLayout): Check isRootPaneCheckingEnabled
+	* javax/swing/JOptionPane.java: Re-implemented.
+	* javax/swing/SwingUtilities.java:
+	(getOwnerFrame): Static method to grab a default
+	owner frame for Dialogs that don't specify owners.
+	* javax/swing/event/SwingPropertyChangeSupport.java:
+	(firePropertyChange): Fix early exit condition.
+	* javax/swing/plaf/basic/BasicLabelUI.java:
+	(paint): Avoid painting text if it is null 
+	or empty.
+	* javax/swing/plaf/basic/BasicOptionPaneUI.java:
+	Implement.
+
+2004-05-03  Olga Rodimina  <rodimina@redhat.com>
+
+	* Makefile.am: Added new file.
+	* Makefile.in: Regenerate.
+	* javax/swing/JPopupMenu.java:
+	Started implementation.
+	* javax/swing/JWindow.java
+	(JWindow): call super() if parent for window
+	is not specified.
+	* javax/swing/plaf/basic/BasicPopupMenuUI.java:
+	New File. UI Delegate for JPopupMenu.
+
+2004-04-30  Olga Rodimina  <rodimina@redhat.com>
+
+	* javax/swing/JApplet.java: Indicated that JApplet
+	implements RootPaneContainer and made method of this
+	interface public. 
+	* javax/swing/JFrame.java: Ditto.
+	* javax/swing/JWindow.java: Ditto.
+	
+2004-04-29  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c
+	(nativeSetBounds): Call gdk_window_move in addition to
+	gtk_window_move.
+
+	* java/applet/Applet.java (preferredSize): Call parent's
+	preferredSize if the applet stub is null.
+	(minimumSize): Likewise for parent's minimumSize.
+
+2004-04-27  Olga Rodimina  <rodimina@redhat.com>
+
+	* javax/swing/JMenuItem.java
+	(createActionPropertyChangeListener): Implemented.
+	(processMouseEvent): Ditto.
+	(fireMenuDragMouseEntered): Ditto.
+	(fireMenuDragMouseExited): Ditto.
+	(fireMenuDragMouseDragged): Ditto.
+	(fireMenuDragMouseReleased): Ditto.
+	(menuSelectionChanged): Ditto.
+	(getSubElements): Ditto.
+	(getComponent): Ditto.
+	(addMenuDragMouseListener): Ditto.
+	(removeMenuDragMouseListener):Ditto.
+	(addMenuKeyListener): Ditto.
+	(removeMenuKeyListener): Ditto.
+	* javax/swing/plaf/basic/BasicMenuItemUI.java
+	(doClick): Imlemented.
+	* javax/swing/plaf/basic/BasicMenuItemUI.MouseInputHandler:
+	Don't handle mouse events here. Pass them to 
+	MenuSelectionManager.
+	
+2004-04-26  Olga Rodimina  <rodimina@redhat.com>
+	Used correct version of jalopy configuration
+	file to fix style in the files below.
+
+2004-04-26  Olga Rodimina  <rodimina@redhat.com>
+
+	* javax/swing/JCheckBoxMenuItem.java: 
+	Fixed style and removed unnecessary comments.
+	* javax/swing/JMenuItem.java: Ditto.
+	* javax/swing/JRadioButtonMenuItem.java: Ditto.
+	* javax/swing/plaf/basic/BasicCheckBoxMenuItemUI.java: Ditto.
+	* javax/swing/plaf/basic/BasicMenuItemUI.java: Ditto.
+	* javax/swing/plaf/basic/BasicRadioButtonMenuItemUI.java: Ditto.
+
+2004-04-23  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu_java_awt_peer_gtk_GtkWindowPeer.c: Change FIXME comment to
+	C-style.
+
+	* gnu_java_awt_peer_gtk_GtkWindowPeer.c: Add FIXME comment.
+
+	* java/awt/ContainerOrderFocusTraversalPolicy.java
+	(getComponentAfter): Start from current component and work up
+	the component hierarchy until an acceptable component is found.
+	Synchronize on tree lock.
+	(getComponentBefore): Likewise.
+
+2004-04-22  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java: Remove
+	focus-related debugging messages.
+	* java/awt/DefaultKeyboardFocusManager.java: Likewise.
+	* java/awt/EventDispatchThread.java: Likewise.
+	* java/awt/KeyboardFocusManager.java: Likewise.
+	* java/awt/Window.java: Likewise.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c: Likewise.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c: Likewise.
+
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c: Change
+	new C++-style comments to C-style comments.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c: Likewise.
+
+	* gnu/java/awt/peer/gtk/GtkComponentPeer.java,
+	jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c
+	(handleEvent): Dispatch key press and key release events to
+	backing widget.
+	(requestFocus): Post a FOCUS_GAINED event to the event queue.
+	(gtkWidgetRequestFocus): New method.
+	(gtkWidgetDispatchKeyEvent): Likewise.
+	* java/awt/Component.java (requestFocus, requestFocus(boolean),
+	requestFocusInWindow, requestFocusInWindow(boolean),
+	getFocusCycleRootAncestor, nextFocus, transferFocus,
+	transferFocusBackward, transferFocusUpCycle, hasFocus,
+	isFocusOwner): Implement and document focus-handling methods.
+	(setFocusTraversalKeys): Inherit focus traversal keys when
+	keystrokes argument is null.  Fix focus-handling documentation
+	throughout class.
+	* java/awt/Container.java (setFocusTraversalKeys,
+	getFocusTraversalKeys, areFocusTraversalKeysSet,
+	isFocusCycleRoot, setFocusTraversalPolicy,
+	getFocusTraversalPolicy, isFocusTraversalPolicySet,
+	setFocusCycleRoot, isFocusCycleRoot, transferFocusDownCycle):
+	Implement and document focus-handling methods.
+	(transferFocusBackward): Remove method.
+	(readObject, writeObject): Implement and document serialization
+	methods.
+	* java/awt/ContainerOrderFocusTraversalPolicy.java: Implement
+	and document.
+	* java/awt/DefaultFocusTraversalPolicy.java: Implement and
+	document.
+	* java/awt/DefaultKeyboardFocusManager.java: Implement and
+	partially document.
+	* java/awt/EventDispatchThread.java (run): Set default keyboard
+	focus manager.  Attempt to dispatch each event to the keyboard
+	focus manager before normal dispatch.
+	* java/awt/KeyboardFocusManager.java: Implement and partially
+	document.
+	* java/awt/Window.java (Window): Set focusCycleRoot to true.
+	(show): Focus initial component when window is shown for the
+	first time.
+	* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c
+	(pre_event_handler): Replace complex key press and key release
+	logic with simple callbacks into GtkComponentPeer.
+	* jni/gtk-peer/gtkpeer.h: Fix FOCUS_GAINED/FOCUS_LOST reversal.
+
+2004-04-21  Olga Rodimina  <rodimina@redhat.com>
+
+	* javax/swing/MenuSelectionManager.java
+	(componentForPoint): Added new method. 
+	(defaultManager): New Method. Implemented.
+	(getSelectedPath): Ditto.
+	(isComponentPartOfCurrentMenu): Ditto.
+	(processKeyEvent): Added new method.
+	(processMouseEvent): New Method. Implemented.
+	(setSelectedPath): Ditto.
+	(getPath): Ditto.
+
+2004-04-19  Kim Ho  <kho@redhat.com>
+
+	* java/awt/Container.java: 
+	(remove): Set the component's parent to null.
+	(getComponentAt): Implement.
+	* javax/swing/JComponent.java:
+	(JComponent): Initialize defaultLocale
+	(getDefaultLocale): Implement.
+	(setDefaultLocale): ditto.
+	* javax/swing/JSlider.java:
+	(JSlider): Fix calculation of value.
+	* javax/swing/JSplitPane.java: Implement.
+	* javax/swing/plaf/basic/BasicLookAndFeel.java:
+	Change SplitPane's default divider size.
+	* javax/swing/plaf/basic/BasicScrollBarUI.java:
+	(paint): Remove unused code.
+	* javax/swing/plaf/basic/BasicSplitPaneDivider.java:
+	Added comments and ran through jalopy.
+	(setBasicSplitPaneUI): Get reference to hidden divider
+	and set up one touch buttons if necessary.
+	(setBorder): Fire propertyChangeEvent only if 
+	borders are different.
+	(getPreferredSize): Defer to layout manager.
+	(propertyChange): Implement.
+	(oneTouchExpandableChanged): ditto.
+	(createLeftOneTouchButton): Use BasicArrowButton.
+	(createRightOneTouchButton): ditto.
+	(moveDividerTo): New method. Moves the divider
+	to a set location based on the last divider location.
+	(BasicSplitPaneDivider::MouseHandler): Implement.
+	(BasicSplitPaneDivider::OneTouchButton): Removed.
+	(BasicSplitPaneDivider::DragController): Implement.
+	(BasicSplitPaneDivider::VerticalDragController):
+	ditto.
+	(BasicSplitPaneDivider::DividerLayout): ditto.
+	* javax/swing/plaf/basic/BasicSplitPaneUI.java: Reimplement.
+	* javax/swing/plaf/basic/BasicTabbedPaneUI.java:
+	(calculateLayoutInfo): Don't show component if it's
+	null.
+	(paintTab): Fix title paint logic.
+
+2004-05-26  Jerry Quinn  <jlquinn@optonline.net>
+
+	PR libgcj/8321
+	* java/util/SimpleTimeZone.java (serialVersionOnStream): Bump to 2.
+	(setStartRule,setEndRule): Don't take abs of day number.
+	(getOffset): Clarify docs.  Add argument checks.
+	(isBefore): Take abs of day number in DOW_LE_DOM_MODE.
+	(equals,hasSameRules,toString,readObject): Use startTimeMode and
+	endTimeMode.
+	* testsuite/libjava.mauve/xfails
+	(gnu.testlet.java.util.SimpleTimeZone.check12): XFAIL test 22.
+
 2004-05-21  Bryce McKinlay  <mckinlay@redhat.com>
 
 	Layout interfaces during preparation, not initialization. 

ChangeLog entries between 2004-05-26T21:18:28Z and the last time everything
passed, on 2004-01-26T14:22:28Z:
--- /Users/regress/tbox/changelog_pass/gcc/ChangeLog	Fri Jan 23 18:13:03 2004
+++ gcc/ChangeLog	Tue May 25 12:45:45 2004
@@ -1,3 +1,462 @@
+2004-05-25  Daniel Jacobowitz  <drow@false.org>
+
+	* Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
+	(STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
+	(NORMAL_TARGET_EXPORTS): New macros.  Use them in all the recursive
+	targets.
+	* Makefile.in: Regenerate.
+
+2005-05-24  Paolo Bonzini <bonzini@gnu.org>
+
+	* configure.in: Test the ability to symlink directories.
+	* configure: Regenerate.
+
+	* Makefile.def (bootstrap-stage): New definitions.
+	* Makefile.tpl (configure-stage1-gcc,
+	configure-stage2-gcc, configure-stage3-gcc,
+	all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
+	new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
+	new-restage3, compare): Autogenerate, see Makefile.in
+	entry for behavioral changes.
+	(distclean-stage1, new-stage1-start, new-stage1-end,
+	new-stage1-bubble, distclean-stage2, new-stage2-start,
+	new-stage2-end, new-stage2-bubble, distclean-stage3,
+	new-stage3-start, new-stage3-end): New autogenerated targets.
+	(objext, prebootstrap, BOOT_CFLAGS,
+	POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
+	targets.
+
+	* Makefile.in: Regenerate.
+	(distclean-stage1, new-stage1-start, new-stage1-end,
+	new-stage1-bubble, distclean-stage2, new-stage2-start,
+	new-stage2-end, new-stage2-bubble, distclean-stage3,
+	new-stage3-start, new-stage3-end): New targets.
+	(all-stage1-gcc): Move prebootstrap dependency from here...
+	(configure-stage1-gcc): ...to here.
+	(new-bootstrap): Use bubble targets.
+	(new-cleanstrap, new-restage1, new-restage2, new-restage3):
+	Use per-stage distclean targets.
+	(configure-stage1-gcc, configure-stage2-gcc,
+	configure-stage3-gcc, all-stage1-gcc,
+	all-stage2-gcc, all-stage3-gcc, new-bootstrap):
+	Use new-stageN-start to prepare the tree.
+
+2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.def (host_modules): add libcpp.
+	* Makefile.tpl: Add dependencies on and for libcpp.
+	* Makefile.in: Regenerate.
+	* configure.in: Add libcpp host module.
+	* configure: Regenerate.
+
+2004-05-21  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.tpl: Whenever a recursive target is defined, wrap
+	it in a special @if/@endif block, and prepare its maybe
+	dependency in the @if/@endif block
+	* configure.in: Instead of writing maybe dependencies, remove
+	the @if/@endif statements, and remove the @if/@endif blocks
+	that remain.
+	* configure: Regenerate.
+	* Makefile.in: Regenerate.
+
+2004-05-20  Janis Johnson  <janis187@us.ibm.com>
+
+	* MAINTAINERS (Various Maintainers): Add myself for compat testsuite.
+
+2004-05-18  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+	PR bootstrap/15120
+	* libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on sh*.
+	* */configure: Rebuilt.
+
+2004-05-17  Zack Weinberg  <zack@codesourcery.com>
+
+	* Makefile.def, Makefile.tpl, configure.in: Remove all mention
+	of libf2c.
+	* configure, Makefile.in: Regenerate.
+
+2004-05-13  Tobias Schlüter  <tobi@gcc.gnu.org>
+
+	* MAINTAINERS (Write After Approval): Add myself.
+
+2004-05-13  Diego Novillo  <dnovillo@redhat.com>
+
+	Merge from tree-ssa-20020619-branch.
+
+	* Makefile.def: Add libbanshee, libmudflap and libgfortran.
+	* Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
+	(HOST_GMPLIBS): Define.
+	(HOST_GMPINC): Define.
+	(TARGET_LIB_PATH): Add libmudflap.
+	(GFORTRAN_FOR_TARGET): Define.
+	(configure-build*): Export GFORTRAN.
+	(configure-gcc): Export GMPLIBS and GMPINC.
+	(all-gcc): Add maybe-all-libbanshee.
+	(configure-target-libgfortran): Define.
+	* Makefile.in: Regenerate.
+	* configure.in (host_libs): Add libbanshee.
+	(target_libraries): Add target-libmudflap and target-libgfortran.
+	Add --with-libbanshee.
+	Handle --disable-libmudflap.
+	(*-*-freebsd*): Use with_gmp.
+	Add $(libgcj) to noconfigdirs.
+	* configure: Regenerate.
+	* depcomp: New file.
+	* MAINTAINERS: Add tree-ssa maintainers.
+
+2004-05-04  Vladimir Makarov  <vmakarov@redhat.com>
+
+	* MAINTAINERS (Various Maintainers): Add myself.
+
+2004-04-30  Brian Ford  <ford@vss.fsi.com>
+
+	* MAINTAINERS (Write After Approval): Add myself.
+
+2004-04-29  Uros Bizjak  <uros@kss-loka.si>
+
+	* MAINTAINERS (Write After Approval): Add myself.
+
+2004-04-28  Paolo Bonzini  <bonzini@gnu.org>
+
+	* config/acx.m4: Fix fastcompare support for new-bootstrap.
+	* configure: Regenerate.
+
+2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
+
+	Revert:
+	2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.def (flags_to_pass): Remove *dir variables that
+	are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
+	as well as prefix and exec_prefix.
+	* Makefile.in: Regenerate.
+
+2004-04-26  Robert Millan  <robertmh@gnu.org>
+
+	Add patches from libtool CVS.
+	* libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
+	* ltconfig: Likewise.
+	* ltcf-c.sh: Likewise.
+	* ltcf-cxx.sh: Likewise.
+	* ltcf-gcj.sh: Likewise.
+
+2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.def (host_modules): Mark with the bootstrap
+	flag packages on which gcc depends.
+	* Makefile.tpl (all-bootstrap): Use it.
+	* Makefile.in: Regenerate.
+
+2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.def (flags_to_pass): Remove *dir variables that
+	are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
+	as well as prefix and exec_prefix.
+	* Makefile.in: Regenerate.
+
+2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
+
+	* configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
+	* configure: Regenerate.
+	* config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
+	* gcc/Makefile.tpl (compare): Use the result of the test.
+	* gcc/Makefile.in: Regenerate.
+
+2004-04-23  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
+	Always relocate gcc and prev-gcc to the original names, even
+	if the build fails.
+	(new-cleanstrap, new-restage1, new-restage2, new-restage3):
+	New targets.
+
+2004-04-23  Laurent GUERBY <laurent@guerby.net>
+
+	* MAINTAINERS: Update my email address.
+
+2004-04-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+	* configure.in (mips*-*-irix5*): Enable ld.
+	* configure: Regenerate.
+
+2004-04-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+	* configure: Regenerate.
+
+2004-04-15  James E Wilson  <wilson@specifixinc.com>
+
+	* Makefile.tpl (configure-[+module+], configure-gcc,
+	configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
+	Set and export LDFLAGS.
+	* Makefile.in: Regenerate.
+
+2004-04-12  Michael Chastain  <mec.gnu@mindspring.com>
+
+	* MAINTAINERS: Add myself to write-after-approval.
+
+2004-04-09  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	PR bootstrap/14871
+	* Makefile.tpl: If we don't have built-in-tree target tools,
+	use the ones found by configure rather than hacking around with
+	program_transform_name.
+	* configure.in: Give Makefile.tpl the information necessary
+	to do that.
+	* Makefile.in: Regenerate.
+	* configure: Regenerate.
+
+2004-04-06  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	PR bootstrap/14760
+	* configure.in: When computing baseargs, strip *all* copies of
+	offending options.  Also, don't match/substitute the trailing space,
+	so that this actually works when two similar options are separated by
+	only one space.
+	* configure: Regenerate.
+
+2004-04-06  David Edelsohn  <edelsohn@gnu.org>
+
+	* configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
+	(rs6000-*-aix*): Same.
+	* configure: Regenerate.
+
+2004-04-05  Ranjit Mathew  <rmathew@hotmail.com>
+
+	* MAINTAINERS: Add myself to write-after-approval.
+
+2004-04-03  Bud Davis  <bdavis9659@comcast.net>
+
+	* MAINTAINERS: Add myself to write-after-approval.
+
+2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* Makefile.tpl (top level bootstrap support): Remove now-unneeded
+	STRICT_WARN, WARN_CFLAGS flags passed down to make.
+	* Makefile.in: Regenerate.
+
+	* configure.in (top level bootstrap support): Rework --enable-werror
+	to set @stage2_werror_flag@.
+	* configure: Regenerate.
+	* Makefile.tpl (top level bootstrap support): Pass
+	@stage2_werror_flag@ down to configure in stages 2 and 3.
+	* Makefile.in: Regenerate.
+
+2004-03-23  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
+	for stages 2 and 3 as well as in make.  As a consequence, remove
+	OUTPUT_OPTION (now detected by configure) from the flags passed down
+	to make.
+	* Makefile.in: Regenerate.
+
+	* Makefile.tpl (new-bootstrap): Fix typo.
+	* Makefile.in: Regenerate.
+
+2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* Makefile.tpl: Rearrange by moving recursive_targets rules
+	into their proper sections.
+	* Makefile.tpl (top level bootstrap support): Move disabling
+	of coverage flags from 'make' to 'configure'; improve comments.
+	* Makefile.in: Regenerate.
+
+	* Makefile.tpl (experimental top level bootstrap) Move stage1
+	language setting from all- target to configure- target; disable
+	intermodule optimization in stage 1; prevent gratuitous rebuilds
+	of stage 1.
+	* Makefile.in: Regenerate.
+	* configure.in: Comma-separate stage 1 language list for top
+	level bootstrap.
+	* configure: Regenerate.
+
+	* Makefile.tpl: Clean up experimental top level bootstrap support:
+	note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
+	prev-gcc in configure- targets as well as all- targets.
+	* Makefile.in: Regenerate.
+
+2004-03-21  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* compile: New file imported from automake.
+
+2004-03-17  Paolo Bonzini  <bonzini@gnu.org>
+
+	* configure.in: Remove symbolic link section.
+	* configure: Regenerate.
+	* Makefile.tpl (links): Remove.
+	* Makefile.in: Regenerate.
+
+2004-03-15  Paolo Bonzini  <bonzini@gnu.org>
+	    Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
+	Set with AC_CHECK_PROGS.
+	* configure.in: Fix comment typo from last patch.
+	* configure: Regenerate.
+
+2004-03-15  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* Makefile.tpl: Introduce experimental top level bootstrap support.
+	* Makefile.in: Regenerate.
+	* configure.in: Introduce support for top level bootstrap.
+	* configure: Regenerate.
+
+2004-03-12  Eric Botcazou  <ebotcazou@gcc.gnu.org>
+	    Paolo Bonzini  <bonzini@gnu.org>
+
+	PR bootstrap/14522
+	* configure.in: Cope with shells that do not support unquoted ^
+	* configure: Regenerate.
+
+2004-03-11  Eric Botcazou  <ebotcazou@gcc.gnu.org>
+	    Paolo Bonzini  <bonzini@gnu.org>
+
+	PR bootstrap/14522
+	* configure.in: Cope with shells that do not support nesting
+	quotes inside quoted backquote substitutions.
+	* configure: Regenerate.
+
+2004-03-10  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR bootstrap/14522
+	* configure.in: Fix escaping of $.
+	* configure: Regenerate.
+
+2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* configure: Regenerate, since I forgot to while committing Paolo's
+	changes.
+
+2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
+
+	PR ada/14131
+	Move language detection to the top level.
+	* configure.in: Find default values for the tools as
+	soon as possible.  Disable ada if GNAT is not found.
+	Emit error message about missing languages.  Expand
+	--enable-languages=all for the gcc subdirectory.
+
+2004-03-10  Ben Elliston  <bje@gnu.org>
+
+	* MAINTAINERS: Update my email address.
+
+2004-03-05  David Edelsohn  <edelsohn@gnu.org>
+
+	* ltconfig: Disable building static libraries if building shared
**** TRUNCATED ****
-------------- next part --------------
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JScrollBar.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JScrollPane.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JTabbedPane.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JTextField.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JToggleButton.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JToolTip.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JTree.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JViewport.java
/Users/regress/tbox/native/build/gcc/gcj -B/Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava/ -B/Users/regress/tbox/native/build/gcc/ --encoding=UTF-8 -Wno-deprecated -C -g -classpath '' -bootclasspath /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava:/Users/regress/tbox/cvs-gcc/gcc/libjava -d /Users/regress/tbox/native/build/powerpc-apple-darwin7.2.0/libjava /Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JWindow.java
/Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JWindow.java: In class `javax.swing.JWindow':
/Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JWindow.java: In constructor `()':
/Users/regress/tbox/cvs-gcc/gcc/libjava/javax/swing/JWindow.java:83: error: Can't access package-private constructor `java.awt.Window.<init>' from `javax.swing.JWindow'.
        	super(); 
                ^
1 error
make[2]: *** [javax/swing/JWindow.class] Error 1
make[1]: *** [all-target-libjava] Error 2
make: *** [bootstrap] Error 2
+ '[' -s gcc/.bad_compare ']'
+ exit 1
-------------- next part --------------
-- 
Geoffrey Keating <geoffk@apple.com> 
(via an automated GCC regression-testing script.)


More information about the Gcc-regression mailing list