diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2012-07-03 14:02:33 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2012-07-03 14:02:33 +0200 |
commit | 95a3d9ee86cca4621511406e8293daaf65b77001 (patch) | |
tree | fe8d4c54a4794dffb6ffb31ac625a07694da7afd /gcc/config/i386 | |
parent | 19d7dc0dfadb205e6ab119f930a42732e2787686 (diff) | |
download | gcc-95a3d9ee86cca4621511406e8293daaf65b77001.zip gcc-95a3d9ee86cca4621511406e8293daaf65b77001.tar.gz gcc-95a3d9ee86cca4621511406e8293daaf65b77001.tar.bz2 |
i386.c (ix86_option_override_internal): Fix wrong code model string in the error message.
* config/i386/i386.c (ix86_option_override_internal): Fix wrong
code model string in the error message.
From-SVN: r189219
Diffstat (limited to 'gcc/config/i386')
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 1a95ca4..59e2bbc 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3283,7 +3283,7 @@ ix86_option_override_internal (bool main_args_p) "large", "32"); else if (TARGET_X32) error ("code model %qs not supported in x32 mode", - "medium"); + "large"); break; case CM_32: |