This is the mail archive of the gcc-prs@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]
Other format: [Raw text]

optimization/6627


The following reply was made to PR optimization/6627; it has been noted by GNATS.

From: sayle@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: optimization/6627
Date: 2 Oct 2002 18:46:46 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	sayle@gcc.gnu.org	2002-10-02 11:46:46
 
 Modified files:
 	gcc            : ChangeLog toplev.c flags.h varasm.c tree.h 
 	gcc/config/i386: i386.h 
 	gcc/cp         : ChangeLog cp-tree.h decl.c 
 	gcc/java       : ChangeLog lang.c 
 
 Log message:
 	PR optimization/6627
 	* toplev.c (force_align_functions_log): New global variable.
 	* flags.h (force_align_functions_log): Add extern prototype.
 	* varasm.c (assemble_start_function): Use it to force minimum
 	function alignment.
 	* config/i386/i386.h (FUNCTION_BOUNDARY): Set the correct
 	minimum function alignment to one byte.
 	(TARGET_PTRMEMFUNC_VBIT_LOCATION): Store the virtual bit in
 	the least significant bit of vtable member function pointers.
 	* tree.h (enum ptrmemfunc_vbit_where_t): Move definition to
 	here from cp/cp-tree.h.
 	
 	* cp/cp-tree.h (enum ptrmemfunc_vbit_where_t): Delete definition
 	from here, and move it to tree.h.
 	* cp/decl.c (cxx_init_decl_processing): If storing the vbit
 	in function pointers, ensure that force_align_functions_log
 	is atleast one.
 	
 	* java/lang.c (java_init): If storing the vbit in function
 	pointers, ensure that force_align_functions_log is atleast
 	one to aid compatability with g++ vtables.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=1.15601&r2=1.15602
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/toplev.c.diff?cvsroot=gcc&r1=1.677&r2=1.678
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/flags.h.diff?cvsroot=gcc&r1=1.90&r2=1.91
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/varasm.c.diff?cvsroot=gcc&r1=1.313&r2=1.314
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.h.diff?cvsroot=gcc&r1=1.357&r2=1.358
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/i386/i386.h.diff?cvsroot=gcc&r1=1.291&r2=1.292
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.2977&r2=1.2978
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&r1=1.754&r2=1.755
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/decl.c.diff?cvsroot=gcc&r1=1.941&r2=1.942
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&r1=1.1061&r2=1.1062
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/lang.c.diff?cvsroot=gcc&r1=1.110&r2=1.111
 


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