diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2011-10-11 17:25:07 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2011-10-11 10:25:07 -0700 |
commit | 816e239ae16481accfae7b85359dc6ebce1dd97b (patch) | |
tree | 1325f47a2b057f32dc5ff62efeff49dd051bb118 /gcc | |
parent | cdbb5ba334fc865a1526c78c762ef4f846f575e8 (diff) | |
download | gcc-816e239ae16481accfae7b85359dc6ebce1dd97b.zip gcc-816e239ae16481accfae7b85359dc6ebce1dd97b.tar.gz gcc-816e239ae16481accfae7b85359dc6ebce1dd97b.tar.bz2 |
Remove the extra break.
2011-10-11 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (ix86_expand_special_args_builtin): Remove
the extra break.
From-SVN: r179812
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3aeb6ab..8c9f7ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-10-11 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.c (ix86_expand_special_args_builtin): Remove + the extra break. + 2011-10-11 Artjoms Sinkarovs <artyom.shinkaroff@gmail.com> * doc/invoke.texi: Document new warning. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 21ce9b2..490bf4ea 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -28096,7 +28096,6 @@ ix86_expand_special_args_builtin (const struct builtin_description *d, klass = store; memory = 0; break; - break; case UINT64_FTYPE_VOID: case UNSIGNED_FTYPE_VOID: nargs = 0; |