diff options
author | David Wohlferd <dw@LimeGreenSocks.com> | 2015-02-11 02:12:50 +0000 |
---|---|---|
committer | Sandra Loosemore <sandra@gcc.gnu.org> | 2015-02-10 21:12:50 -0500 |
commit | 78f76f2f242c8fd9b92752e099a17ef4d66aa4f8 (patch) | |
tree | fffd43acf50dcbae8138851968a134aa59d3cb4f /gcc | |
parent | c09d690157290f0185fac35656c14f2d2d61a996 (diff) | |
download | gcc-78f76f2f242c8fd9b92752e099a17ef4d66aa4f8.zip gcc-78f76f2f242c8fd9b92752e099a17ef4d66aa4f8.tar.gz gcc-78f76f2f242c8fd9b92752e099a17ef4d66aa4f8.tar.bz2 |
extend.texi (Loop-Specific Pragmas): Fix grammar error.
2015-02-10 David Wohlferd <dw@LimeGreenSocks.com>
Sandra Loosemore <sandra@codesourcery.com>
gcc/
* doc/extend.texi (Loop-Specific Pragmas): Fix grammar error.
Co-Authored-By: Sandra Loosemore <sandra@codesourcery.com>
From-SVN: r220604
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 324c48d..f3ff9e2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,9 @@ 2015-02-10 David Wohlferd <dw@LimeGreenSocks.com> + Sandra Loosemore <sandra@codesourcery.com> + + * doc/extend.texi (Loop-Specific Pragmas): Fix grammar error. + +2015-02-10 David Wohlferd <dw@LimeGreenSocks.com> * doc/extend.texi (Symbol-Renaming Pragmas): Restore (slightly modified) reference to Solaris. diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 8d4e07d..b06661e 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -17912,8 +17912,8 @@ versions earlier than 4.4. @end table With this pragma, the programmer asserts that there are no loop-carried -dependencies which would prevent that consecutive iterations of -the following loop can be executed concurrently with SIMD +dependencies which would prevent consecutive iterations of +the following loop from executing concurrently with SIMD (single instruction multiple data) instructions. For example, the compiler can only unconditionally vectorize the following |