diff options
author | Walter Lee <walt@tilera.com> | 2014-01-25 20:23:42 +0000 |
---|---|---|
committer | Walter Lee <walt@gcc.gnu.org> | 2014-01-25 20:23:42 +0000 |
commit | 450c1ffe7717b814b69154b2ab0f66239a8820ba (patch) | |
tree | 1f419840888c27ee2c31636785f3bf3042383427 /gcc/config/tilegx | |
parent | 317a951fc75f1afb5e4fc25810722cf9044da7ed (diff) | |
download | gcc-450c1ffe7717b814b69154b2ab0f66239a8820ba.tar.gz |
tilegx.c (tilegx_expand_builtin): Set PREFETCH_SCHEDULE_BARRIER_P to true for prefetches.
2014-01-25 Walter Lee <walt@tilera.com>
* config/tilegx/tilegx.c (tilegx_expand_builtin): Set
PREFETCH_SCHEDULE_BARRIER_P to true for prefetches.
* config/tilepro/tilepro.c (tilepro_expand_builtin): Ditto.
From-SVN: r207080
Diffstat (limited to 'gcc/config/tilegx')
-rw-r--r-- | gcc/config/tilegx/tilegx.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/tilegx/tilegx.c b/gcc/config/tilegx/tilegx.c index 85a46f798e1..c1686213f9f 100644 --- a/gcc/config/tilegx/tilegx.c +++ b/gcc/config/tilegx/tilegx.c @@ -3570,6 +3570,12 @@ tilegx_expand_builtin (tree exp, } if (!pat) return NULL_RTX; + + /* If we are generating a prefetch, tell the scheduler not to move + it around. */ + if (GET_CODE (pat) == PREFETCH) + PREFETCH_SCHEDULE_BARRIER_P (pat) = true; + emit_insn (pat); if (nonvoid) |