diff options
author | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-28 01:00:21 +0000 |
---|---|---|
committer | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-28 01:00:21 +0000 |
commit | c4f8e01fdac5dd7343fab916f393f73220538a6c (patch) | |
tree | 540dee9cc8034abc8b84fd2c2e5cf0034f91441e /gcc/config/darwin.c | |
parent | 007e5a7cfe7b5000616ea13b8948b50fb4f07953 (diff) | |
download | gcc-c4f8e01fdac5dd7343fab916f393f73220538a6c.tar.gz |
2006-10-27 Eric Christopher <echristo@apple.com>
* config/darwin.c: Fix formatting and grammar.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118099 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/darwin.c')
-rw-r--r-- | gcc/config/darwin.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 587a327c870..dfd84ef5191 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -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; |