]> gcc.gnu.org Git - gcc.git/commitdiff
darwin.c: Fix formatting and grammar.
authorEric Christopher <echristo@gcc.gnu.org>
Sat, 28 Oct 2006 01:00:21 +0000 (01:00 +0000)
committerEric Christopher <echristo@gcc.gnu.org>
Sat, 28 Oct 2006 01:00:21 +0000 (01:00 +0000)
2006-10-27  Eric Christopher  <echristo@apple.com>

    * config/darwin.c: Fix formatting and grammar.

From-SVN: r118099

gcc/ChangeLog
gcc/config/darwin.c

index eee8ad3c6b2594ae1539285d561450d620c321d3..855dccbbcf3f5fd97162ead600e0cba1b718e865 100644 (file)
@@ -1,3 +1,7 @@
+2006-10-27  Eric Christopher  <echristo@apple.com>
+
+       * config/darwin.c: Fix formatting and grammar.
+
 2006-10-27  Jan Hubicka  <jh@suse.cz>
 
        * builtins.c (fold_builtin): Don't generate NOP_EXPR that is going
@@ -38,7 +42,7 @@
        * config/i386/geode.md: New file.
 
        * doc/invoke.texi: Add entry about geode processor.
-    
+
 2006-10-27  Mike Stump  <mrs@apple.com>
 
        * config/darwin-c.c (darwin_cpp_builtins): Move __STATIC__ and
        (init_alias_heapvars): Initialize nonlocal_for_type and
        nonlocal_all.
        (delete_alias_heapvars): Free nonlocal_for_type and null out
-       nonlocal_all. 
+       nonlocal_all.
 
 2006-10-19  Eric Botcazou  <ebotcazou@adacore.com>
 
        * fold-const.c (add_double): Rename to add_double_with_sign.
        Add 'unsigned_p' parameter and take it into account for the overflow.
-       (mul_double): Rename to mul_double_with_sign. 
+       (mul_double): Rename to mul_double_with_sign.
        Add 'unsigned_p' parameter and take it into account for the overflow.
        (fold_div_compare): Call add_double_with_sign instead of add_double
        and mul_double_with_sign instead of mul_double, passing them the
 2006-10-17  Wolfgang Gellerich  <gellerich@de.ibm.com>
 
        * config/s390/contraints.md: New file.
-        * config/s390/s390-protos.h (s390_mem_constraint, 
-       s390_O_constraint_str, s390_N_constraint_str, 
+        * config/s390/s390-protos.h (s390_mem_constraint,
+       s390_O_constraint_str, s390_N_constraint_str,
        s390_float_const_zero_p): Function prototypes added.
-       * config/s390/s390.c (s390_extra_constraint_str, 
-       s390_const_double_ok_for_constraint_p, 
+       * config/s390/s390.c (s390_extra_constraint_str,
+       s390_const_double_ok_for_constraint_p,
        s390_const_ok_for_constraint_p): Functions removed.
         (s390_mem_constraint, s390_O_constraint_str, s390_N_constraint_str,
        s390_float_const_zero_p): New functions.
        * config/s390/s390.h (REG_CLASS_FROM_LETTER, CONST_OK_FOR_CONSTRAINT_P,
-       CONST_DOUBLE_OK_FOR_CONSTRAINT_P, EXTRA_CONSTRAINT_STR, 
-       EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT, CONSTRAINT_LEN): 
+       CONST_DOUBLE_OK_FOR_CONSTRAINT_P, EXTRA_CONSTRAINT_STR,
+       EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT, CONSTRAINT_LEN):
        Macro definitions removed.
        (s390_const_ok_for_constraint_p, s390_const_double_ok_for_constraint_p,
        s390_extra_constraint_str): Functions removed.
index 587a327c87009524a6623a85681af3699134d3b9..dfd84ef5191e00641ce99685e7cebc1332310b93 100644 (file)
@@ -220,7 +220,8 @@ indirect_data (rtx sym_ref)
   int lprefix;
   const char *name;
 
-  /* If we aren't generating fix-and-continue code, don't do anything special.  */
+  /* If we aren't generating fix-and-continue code, don't do anything
+     special.  */
   if (TARGET_FIX_AND_CONTINUE == 0)
     return 0;
 
@@ -712,7 +713,8 @@ machopic_legitimize_pic_address (rtx orig, enum machine_mode mode, rtx reg)
                                   gen_rtx_LO_SUM (Pmode, temp_reg, asym));
              emit_insn (gen_rtx_SET (VOIDmode, reg, mem));
 #else
-             /* Some other CPU -- WriteMe! but right now there are no other platform that can use dynamic-no-pic  */
+             /* Some other CPU -- WriteMe! but right now there are no other
+                platforms that can use dynamic-no-pic  */
              gcc_unreachable ();
 #endif
              pic_ref = reg;
@@ -1110,12 +1112,15 @@ machopic_select_section (tree exp, int reloc,
                        ? darwin_sections[text_unlikely_coal_section]
                        : unlikely_text_section ());
       else
-       base_section = weak_p ? darwin_sections[text_coal_section] : text_section;
+       base_section = weak_p ? darwin_sections[text_coal_section]
+         : text_section;
     }
   else if (decl_readonly_section_1 (exp, reloc, MACHOPIC_INDIRECT))
-    base_section = weak_p ? darwin_sections[const_coal_section] : darwin_sections[const_section];
+    base_section = weak_p ? darwin_sections[const_coal_section]
+      : darwin_sections[const_section];
   else if (TREE_READONLY (exp) || TREE_CONSTANT (exp))
-    base_section = weak_p ? darwin_sections[const_data_coal_section] : darwin_sections[const_data_section];
+    base_section = weak_p ? darwin_sections[const_data_coal_section]
+      : darwin_sections[const_data_section];
   else
     base_section = weak_p ? darwin_sections[data_coal_section] : data_section;
 
This page took 0.091129 seconds and 5 git commands to generate.