diff options
author | ctice <ctice@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-19 20:47:12 +0000 |
---|---|---|
committer | ctice <ctice@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-19 20:47:12 +0000 |
commit | 644643f642d614e7e3f07c1b692da4d338bcaaea (patch) | |
tree | d6f941c7cf9c475d452d0e8f85e528399f17440c /gcc/config/i386/cygming.h | |
parent | 85c8257b6fa8a7bf60fe578c44de2944a8f56c28 (diff) | |
download | gcc-644643f642d614e7e3f07c1b692da4d338bcaaea.tar.gz |
Fix typo: Change "in_unlikely_text_section" to "in_unlikely_executed_text".
Committed as obvious.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86270 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/cygming.h')
-rw-r--r-- | gcc/config/i386/cygming.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ |