From: Caroline Tice Date: Thu, 19 Aug 2004 20:47:12 +0000 (-0700) Subject: Fix typo: Change "in_unlikely_text_section" to "in_unlikely_executed_text". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5bfecf2ff4b10d7fd828e288be17bd84a4ab651;p=gcc.git Fix typo: Change "in_unlikely_text_section" to "in_unlikely_executed_text". Committed as obvious. From-SVN: r86270 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 770d2c0cf02..f17675d03c5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-19 Caroline Tice + + * config/i386/cygming.h (switch_to_section): Fix typo (change + in_unlikely_text_section to in_unlikely_executed_text). + 2004-08-19 Daniel Berlin * vec.h (VEC_lower_bound): New macro. @@ -2599,7 +2604,7 @@ * config/i386/xmmintrin.h: Include . 2004-08-03 H.J. Lu - Tanguy Fautrà + Tanguy Fautrà * config/i386/pmm_malloc.h: New file. diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h index cb0682010b8..d04ef6e0b7b 100644 --- a/gcc/config/i386/cygming.h +++ b/gcc/config/i386/cygming.h @@ -162,7 +162,7 @@ switch_to_section (enum in_section section, tree decl) \ switch (section) \ { \ case in_text: text_section (); break; \ - case in_unlikely_text_section: unlikely_text_section (); break; \ + case in_unlikely_executed_text: unlikely_text_section (); break; \ case in_data: data_section (); break; \ case in_readonly_data: readonly_data_section (); break; \ case in_named: named_section (decl, NULL, 0); break; \