[llvm-commits] [llvm-gcc-4.2] r55661 - in /llvm-gcc-4.2/trunk: ChangeLog.apple gcc/ChangeLog.apple gcc/cp/ChangeLog.apple gcc/objc/ChangeLog.apple gcc/testsuite/ChangeLog.apple

Bill Wendling isanbard at gmail.com
Tue Sep 2 14:51:04 PDT 2008


Author: void
Date: Tue Sep  2 16:51:04 2008
New Revision: 55661

URL: http://llvm.org/viewvc/llvm-project?rev=55661&view=rev
Log:
Update change logs

Modified:
    llvm-gcc-4.2/trunk/ChangeLog.apple
    llvm-gcc-4.2/trunk/gcc/ChangeLog.apple
    llvm-gcc-4.2/trunk/gcc/cp/ChangeLog.apple
    llvm-gcc-4.2/trunk/gcc/objc/ChangeLog.apple
    llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple

Modified: llvm-gcc-4.2/trunk/ChangeLog.apple
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/ChangeLog.apple?rev=55661&r1=55660&r2=55661&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/ChangeLog.apple (original)
+++ llvm-gcc-4.2/trunk/ChangeLog.apple Tue Sep  2 16:51:04 2008
@@ -1,3 +1,17 @@
+2008-08-25  Josh Conner  <jconner at apple.com>
+
+	Radar 6162685
+	* build_libgcc: Strip libgcc.
+
+	Radar 6175043
+	* build_libgcc: Disable bootstrap if BOOTSTRAP is empty.
+
+2008-08-06  Eugene Marinelli  <marinelli at apple.com>
+
+	Radar 6123671
+	* driverdriver.c (main): Instead of aborting, print a fatal error when
+	there is no argument after -o.
+
 2008-06-04  Josh Conner  <jconner at apple.com>
 
 	Radar 5961147

Modified: llvm-gcc-4.2/trunk/gcc/ChangeLog.apple
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/ChangeLog.apple?rev=55661&r1=55660&r2=55661&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/ChangeLog.apple (original)
+++ llvm-gcc-4.2/trunk/gcc/ChangeLog.apple Tue Sep  2 16:51:04 2008
@@ -1,3 +1,255 @@
+2008-08-28  Stuart Hastings  <stuart at apple.com>
+
+	Radar 5023884
+	* gcc/config/darwin.h (LINK_SPEC): Remove "-multiply_defined
+          suppress".
+
+2008-08-28  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6160536
+	* c-commmon.c (build_block_helper_name): New
+	* c-common.h (build_block_helper_name): New decl.
+	* c-parser.c (c_parser_block_literal_expr): Call
+	build_block_helper_name to build pretty helper function
+	name.
+
+2008-08-28  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6180456
+	* c-decl.c (synth_block_byref_id_object_copy_func): Different
+	API for copying __block declared objects in c.
+	(synth_block_byref_id_object_dispose_func): Different API
+	for releasing __block declared objects in c.
+	* c-common.c (block_byref_assign_copy_decl): New
+	(build_indirect_object_id_exp): Cast to 'id *' in objective-c
+	mode only.
+	* c-common.h (build_block_byref_assign_copy_decl): New decl.
+	* c-parser.c (synth_copy_helper_block_func): Refactored code
+	to call build_block_byref_assign_copy_decl().
+	
+2008-08-27  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6177162
+	* c-typeck.c (build_external_ref): Allow local static as a byref
+	variable by default.
+
+2008-08-27  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 5780114
+	* gcc/doc/extend.texi: Modify documentation for -fobjc-gc.
+
+2008-08-26  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6131435
+	* gcc/config/i386/i386.h (SLOW_BYTE_ACCESS): Remove check for
+          TARGET.
+
+2008-08-22  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6164211
+	* c-typeck.c (build_array_ref): Preserve element's
+	protocol list when building array type.
+
+2008-08-22  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6172148
+	* tree.h (BLOCK_SYNTHESIZED_FUNC): Define
+	* dwarf2out.c (dwarf2out_decl): Check for
+	block helpers and do not treat them as nested
+	functions.
+	* c-decl.c (build_helper_func_decl): Set BLOCK_SYNTHESIZED_FUNC
+	for all block helper functions.
+
+2008-08-25  Josh Conner  <jconner at apple.com>
+
+	Radar 6148015
+	* config/arm/arm.h (ARG_POINTER_CFA_OFFSET): Define.
+	* config/arm/arm.c (arm_expand_prologue): Mark pushes as
+	RTX_FRAME_RELATED_P.
+
+2008-08-24  Caroline Tice  <ctice at apple.com>
+
+	Radars 6144664, 6145471, 6144634
+	c-decl.c (build_block_byref_decl):  Assign the source
+	location for each byref decl to the source location of
+	the helper function decl.
+	(build_block_ref_decl):  Ditto for ref decls.
+
+2008-08-23  Josh Conner  <jconner at apple.com>
+
+	Radar 6162387
+	* config/darwin-sections.def (objc_v2_selector_refs_section):
+	Change section type to literal_pointers.
+
+2008-08-22  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5595325
+	* config/darwin-protos.h (darwin_handle_nsobject_attribute): New decl.
+	* config/darwin.c (darwin_handle_nsobject_attribute): New handler
+	for NSObject attribute.
+	* config/darwin.h: New entry for NSObject attribute table.
+
+2008-08-19  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5435299
+	* c.opt (fnew-property-ivar-synthesis): New option.
+
+2008-08-20  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6131435
+	* gcc/config/i386.h (SLOW_BYTE_ACCESS): Fix APPLE LOCAL.
+
+2008-08-19  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6131435
+	* gcc/config/i386.h (SLOW_BYTE_ACCESS): Set false under
+          -mkernel, -fapple-kext, or -m64.
+
+2008-08-18  Josh Conner  <jconner at apple.com>
+
+	Revert:
+	2008-08-14  Eugene Marinelli <marinelli at apple.com>
+        Radar 6149764
+        * Makefile.in: Add treecode-num-insns.def to tree-inline.o dependency
+        list.
+
+	2008-08-06  Eugene Marinelli <marinelli at apple.com>
+        Radar 6013597
+        * params.def: Change default PARAM_INLINE_CALL_COST from 16 to 2.
+        Multiply instruction-count related parameters by 0.55 to account
+        for new instruction count estimation.
+        * tree-inline.c (estimate_num_insns_1): Replace most cases with
+        addition of constants defined in treecode-num-insns.def.  Other cases
+        modified to return 1000 times the estimated number of instructions.
+        (estimate_num_insns): Divide result of estimate_num_insns_1 by 1000.
+        * treecode-num-insns.def: Add
+
+2008-08-14  Eugene Marinelli <marinelli at apple.com>
+
+	Radar 6149764
+	* Makefile.in: Add treecode-num-insns.def to tree-inline.o dependency
+	list.
+
+2008-08-14  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5822844
+	* c-typeck.c (digest_init): Handler block as initializer.
+	(c_finish_return): check for completed block before
+	analyzing block's return expression.
+	* varasm.c (output_constant): Allow outputting block data.
+	* c-common.h (BLOCK_IS_GLOBAL): New flag.
+	(block_is_complete): New field in block data structure.
+	* c-parser.c (build_block_struct_initlist): New initializer and
+	flag for global block data.
+	(build_block_literal_tmp): Temporary data for global block is
+	declared as global static.
+	(c_parser_block_literal_expr): Removed diagnostics for global blocks.
+	Moved fixing helper function type earlier before its tree is built.
+	
+2008-08-11  Jim Grosbach <grosbach at apple.com>
+
+	Radar 6141565
+	* gcc/c-common.c (iasm_constraint_for): fix compiler warning
+
+2008-08-08  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6131435
+	* gcc/config/i386.h (SLOW_BYTE_ACCESS): Set false for all
+          targets.
+
+2008-08-08  Stuart Hastings  <stuart at apple.com>
+
+	Radar 5971844
+	* gcc/config/i386/darwin.opt
+          (-mdarwin-rtl-pre-ignore-critical-edges): New flag.
+	* gcc/postreload-gcse.c (eliminate_partially_redundant_load):
+          Disable critical edge check under
+          -mdarwin-rtl-pre-ignore-critical-edges.
+
+2008-08-07  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6128170
+	* gcc/except.c (output_function_exception_table): Move .align
+          ahead of both labels.
+
+2008-08-06  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6014138 
+	* c-decl.c (build_block_byref_decl): In the presence of nested "{" 
+	  move up the scope chain until reaching the main function body's scope.
+
+2008-08-06  Eugene Marinelli <marinelli at apple.com>
+
+	Radar 6013597
+	* params.def: Change default PARAM_INLINE_CALL_COST from 16 to 2.
+	Multiply instruction-count related parameters by 0.55 to account
+	for new instruction count estimation.
+	* tree-inline.c (estimate_num_insns_1):	Replace most cases with
+	addition of constants defined in treecode-num-insns.def.  Other cases
+	modified to return 1000 times the estimated number of instructions.
+	(estimate_num_insns): Divide result of estimate_num_insns_1 by 1000.
+	* treecode-num-insns.def: Add
+
+2008-08-06  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6112131 - again (restore __byref again).
+	* config/darwin-c.c (darwin_cpp_builtins): Define __block.
+
+2008-08-05  Eugene Marinelli  <marinelli at apple.com>
+
+	Radar 6020402
+	Re-add fixed version of original patch for radar 6020402.
+
+2008-08-05   Jim Grosbach <grosbach at apple.com>
+
+	Radar 6110622
+	* config/arm/arm.md (soft_muldi3): Missing length attribute
+
+2008-08-05  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6102803
+	* flow.c (recompute_reg_usage): If targeting ppc with
+	-ftree-pre, clear existing reg-lifetime info to insure
+	thorough dead-code elimination.
+	* sbitmap.c (dump_sbitmap_vector): Avoid dumping uninitialized
+          memory.
+
+2008-08-04  Eugene Marinelli  <marinelli at apple.com>
+
+	Radar 6020402
+	Temporarily reverting previous fix because of compilation error.
+
+2008-08-04  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in progress.
+	* c-decl.c (build_indirect_object_id_exp): Removed.
+	* c-common.c (build_indirect_object_id_exp): Added
+	* c-common.h (build_indirect_object_id_exp): New decl.
+	* config/darwin-c.c (darwin_cpp_builtins): Define __byref
+	in c++ mode as well.
+
+2008-08-04  Eugene Marinelli  <marinelli at apple.com>
+
+	Radar 6020402
+	* calls.c (store_unaligned_arguments_into_pseudos): Add additional
+	argument to store_bit_field call.
+	* expmed.c (store_bit_field): Add argument for type of struct
+	containing the bit field.
+	(widest_mode_including_no_volatile_fields): Add.
+	(store_fixed_bit_field): Use widest_mode_including_no_volatile_fields
+	to set the maximum mode size to the size around the current field
+	that does not include any volatile fields.
+	* expr.c (emit_group_store, copy_blkmode_from_reg, write_complex_part):
+	Add arguments to store_bit_field calls.
+	* expr.h (store_bit_field): Add argument for struct type.
+	* ifcvt.c (noce_emit_move_insn): Add arguments to
+	store_bit_field calls.
+
+2008-08-4   Jim Grosbach <grosbach at apple.com>
+	Radar 6090616
+	* global.c (set_preference): Add checks to prevent integer underflow
+	of register numbers.
+
 2008-08-01  Geoff Keating  <geoffk at apple.com>
 
         Radar 5095227

Modified: llvm-gcc-4.2/trunk/gcc/cp/ChangeLog.apple
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/cp/ChangeLog.apple?rev=55661&r1=55660&r2=55661&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/cp/ChangeLog.apple (original)
+++ llvm-gcc-4.2/trunk/gcc/cp/ChangeLog.apple Tue Sep  2 16:51:04 2008
@@ -1,3 +1,80 @@
+2008-08-28  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6160536
+	* parser.c (cp_parser_block_literal_expr): Call build_block_helper_name
+	to get pretty name for block helper function.
+
+2008-08-28  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6180456
+	* decl.c (synth_block_byref_id_object_copy_func): Use different
+	API when copying __block object in c language.
+	(synth_block_byref_id_object_dispose_func): Use different
+	API when releasing a __block object in c.
+	* parser.c (synth_copy_helper_block_func): Refactored to
+	call build_block_byref_assign_copy_decl().
+
+2008-08-27  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6087117
+	* typeck.c (convert_arguments): Takes an extra argument
+	for distiguinsing block call to function calls.
+	(build_function_call): Tell convert_arguments if we
+	are calling a block.
+
+2008-08-22  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6172148
+	* parser.c (build_helper_func_decl): Set BLOCK_SYNTHESIZED_FUNC
+	for all block helper functions; used by die generation.
+
+2008-08-24  Caroline Tice  <ctice at apple.com.
+
+        Radar 6144664
+        * parser.c (build_block_byref_decl):  Assign the 
+	source location for each byref decl to the source
+	location of the helper function decl.
+	(build_block_ref_decl):  Ditto for ref decls.
+
+2008-08-06  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in proggress.
+	* parser.c (clean_and_exit): Clean up if inside
+	a function.
+	(cp_parser_block_literal_expr): Set DECL_NO_STATIC_CHAIN
+	if inside a function.
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in progress.
+	* decl.c (cp_finish_decl): local static is treated just
+	like global static wrt __byref.
+	* semantics.c (finish_id_expression): Ditto.
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in progress.
+	* decl.c (init_byref_decl): Generate c-style helper
+	functions for compose/dispose helpers.
+
+2008-08-04  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in progress.
+	* decl.c (synth_block_byref_id_object_copy_func,
+	synth_block_byref_id_object_dispose_func,
+	block_start_struct, block_finish_struct,
+	new_block_byref_decl, init_byref_decl): New routines.
+	(cp_finish_decl): Build the APIed version of 
+	a __byref local vriable.
+	* semantics.c (finish_id_expression): Add a __byref
+	variable to the list of such variables for current
+	block.
+	* parser.c (build_component_ref): Fix to make it work.
+	(cp_parser_block_literal_expr): Push/pop language-c,
+	set context of the helper function.
+	(declare_block_prologue_local_vars): Mend tree for
+	the built-in local variables in the helper prologue.
+
 2008-07-31  Fariborz Jahanian <fjahanian at apple.com>
 
         Radar 6040305 - work in progress

Modified: llvm-gcc-4.2/trunk/gcc/objc/ChangeLog.apple
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/objc/ChangeLog.apple?rev=55661&r1=55660&r2=55661&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/objc/ChangeLog.apple (original)
+++ llvm-gcc-4.2/trunk/gcc/objc/ChangeLog.apple Tue Sep  2 16:51:04 2008
@@ -1,3 +1,80 @@
+2008-08-26  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5595325 (minor addition)
+	* objc-act.c (objc_finish_message_expr): Do not warn
+	on invalid receiver type if receiver is an
+	NSObject.
+
+008-08-22  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5595325
+	* objc-act.c (objc_nsobject_attribute_type): New
+	(objc_compare_types): Allow NSObject pointers to match 'id'
+	(objc_is_object_ptr): An SObject pointer is a valid objective-c
+	object.
+	
+2008-08-20  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6157135
+	* objc-act.c (objc_delta_format_args): Don't change
+	number of first variarg if it is 0.
+
+2008-08-19  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5435299
+	* objc-act.c (objc_synthesize_new_getter): Do not call
+	objc_lookup_property_ivar with -fnew-property-ivar-synthesis
+	(objc_synthesize_new_setter): Ditto.
+	(objc_add_internal_ivar): Synthesize an ivar according to
+	new rules.
+	(lookup_property_impl_in_list): New
+	(lookup_ivar_in_property_list): New
+	(objc_declare_property_impl): Diagnose a corner case
+	of a missing 'ivar'. Synthesize 'ivar' at point
+	of @synthesize declaration. Issue more diagnostics.
+		
+2008-08-19  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 5847641
+	* objc-act.c (objc_declare_property_impl): Warn if
+	undeclared ivar is specified on @synthesize.
+
+2008-08-18  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 5424416
+	* objc-act.c (objc_start_method_definition): Issue 
+	diagnostics on methods returning array or function.
+
+2008-08-18  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 5453108
+	* objc-act.c (property_method_in_class): New
+	(check_methods): Check on method being a property
+	method in current class by calling property_method_in_class.
+
+2008-08-14  Dale Johannesen <dalej at apple.com>
+
+        * objc-act.c (build_objc_string_decl):  Rename to
+        build_objc_string_ident throughout.  Make it return an
+        identifier instead of building a var_decl which gets
+        thrown away.
+        (add_objc_string):  Modify for interface change.
+
+2008-08-12  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6133042
+	* objc-act.c (block_pointer_strong_value): New
+	(objc_build_aggregate_ivar_layout): Find GCability of
+	block pointer by calling above routine.
+	(objc_is_gcable_type): Ditto.
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 - work in proggress.
+
+	* objc-act.c (build_ivar_reference): treat 'self' as 
+	a copied in variable or ObjC++ as well.
+
 2008-07-28  Fariborz Jahanian <fjahanian at apple.com>
 
 	Radar 6049617

Modified: llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple?rev=55661&r1=55660&r2=55661&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple Tue Sep  2 16:51:04 2008
@@ -1,3 +1,126 @@
+2008-08-07  Stuart Hastings  <stuart at apple.com>
+
+	Radar 6128170
+	* gcc/testsuite/objc.dg/6128170.m: New.
+
+2008-08-06  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6014138 
+	* gcc.apple/block-nested.c: Modified
+
+2008-08-07  Stuart Hastings  <stuart at apple.com>
+
+	* gcc.apple/5773922.c: Added -std=c99.
+
+2008-08-06  Eugene Marinelli <marinelli at apple.com>
+
+	Radar 6013597
+	* g++.dg/inline-limit-1.C: Update number of calls needed to cause
+	inlining and non-inlining.
+
+2008-08-06  Eugene Marinelli <marinelli at apple.com>
+
+	Radar 6020402
+	* gcc.apple/6020402-1.c: Check for orq exclusively (not xorq).
+	* gcc.apple/6020402-2.c: Check for orl exclusively (not xorl).
+
+2008-08-06  Jon Ziegler <jonz at apple.com>
+
+	Radar 5095227
+	Testing default, so don't run these tests
+	when -fstack-proctor[-all] is specified.
+	* g++.apple/kext-stackprotect-1.C
+	* g++.apple/kext-stackprotect-2.C
+
+2008-08-06  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6112131 - again (restore __byref again).
+	* gcc.apple/block-block-storageclass.c: Add
+	* g++.apple/block-block-storageclass.C: Add
+	
+2008-08-06  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in proggress.
+	* g++.apple/block-global-block.C: Add
+
+2008-08-06  Stuart Hastings  <stuart at apple.com>
+
+	Radar 5774132.C
+	* g++.apple/5774132.C: New.
+
+2008-08-06  Stuart Hastings  <stuart at apple.com>
+
+	Radar 5773922
+	* gcc.apple/5773922.c: New.
+
+2008-08-05  Jon Ziegler <jonz at apple.com>
+
+	Radar 6125032
+	* g++.apple/5596043.C: make compile only
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+        Radar 6040305 - work in proggress.
+	* g++.apple/block-ivar.C: Add
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 - work in progress.
+	* g++.apple/block-error-global-byref.C: Add
+	* g++.apple/block-global-byref.C: Add
+	* g++.apple/block-global-implicit-byref.C: Modified
+	* g++.apple/block-blocks-test-1.C: Modified
+	* g++.apple/block-blocks-test-1.C: Modified
+	* g++.apple/block-readonly-diag.C: Modified
+	* g++.apple/block-assigngcglobal.C: Modified
+	* g++.apple/block-assigngcivar.C: Modified
+	
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 - work in progress.
+ 	* g++.apple/block-byref.C
+	* g++.apple/block-byref-attribute.C
+	* g++.apple/block-implicit-byref.C
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 - work in progress.
+	* g++.apple/block-blocks-test-8.C: Add
+
+2008-08-05  Stuart Hastings  <stuart at apple.com>
+
+	Radar 5951276
+	* gcc.target/i386/20020616-1.c: Skip for Darwin.
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 - work in progress.
+	* g++.apple/block-blocks-test-7.C: Add.
+
+2008-08-05  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 (More tests passed with previous patch).
+	* g++.apple/block-blocks-test-1.C: Add
+	* g++.apple/block-blocks-test-5.C: Add
+	* g++.apple/block-blocks-test-6.C: Add
+
+2008-08-04  Fariborz Jahanian <fjahanian at apple.com>
+
+	Radar 6040305 - work in progress.
+	* g++.apple/block-blocks-test-4.C: Add
+
+2008-08-04  Eugene Marinelli <marinelli at apple.com>
+
+	Radar 6020402
+	* gcc.apple/6020402-1.c: Add
+	* gcc.apple/6020402-2.c: Add
+
+2008-08-04  Jon Ziegler <jonz at apple.com>
+
+	Radar 6112293
+	* gcc.c-torture/execute/builtins/lib/sprintf.c
+	* gcc.dg/cpp/trad/include.c
+
 2008-07-31  Fariborz Jahanian <fjahanian at apple.com>
 
 	Radar 6040305 - work in progress





More information about the llvm-commits mailing list