diff options
author | Thomas Preud'homme <thomas.preudhomme@arm.com> | 2016-09-26 17:20:39 +0000 |
---|---|---|
committer | Thomas Preud'homme <thopre01@gcc.gnu.org> | 2016-09-26 17:20:39 +0000 |
commit | e73cf9a208d8ef5482f3f3ca7bc78bd38d633595 (patch) | |
tree | 2cc75ac7cc2f3f7e00bcda2ebf61b8484b518328 /gcc/tsan.c | |
parent | 991075a49668f776b727b3b358557a02a896afa2 (diff) | |
download | gcc-e73cf9a208d8ef5482f3f3ca7bc78bd38d633595.zip gcc-e73cf9a208d8ef5482f3f3ca7bc78bd38d633595.tar.gz gcc-e73cf9a208d8ef5482f3f3ca7bc78bd38d633595.tar.bz2 |
tree.h (memmodel_from_int, [...]): Move to ...
2016-09-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
gcc/
* tree.h (memmodel_from_int, memmodel_base, is_mm_relaxed,
is_mm_consume, is_mm_acquire, is_mm_release, is_mm_acq_rel,
is_mm_seq_cst, is_mm_sync): Move to ...
* memmodel.h: This. New file.
* builtins.c: Include memmodel.h.
* optabs.c: Likewise.
* tsan.c: Likewise.
* config/aarch64/aarch64.c: Likewise.
* config/alpha/alpha.c: Likewise.
* config/arm/arm.c: Likewise.
* config/i386/i386.c: Likewise.
* config/ia64/ia64.c: Likewise.
* config/mips/mips.c: Likewise.
* config/rs6000/rs6000.c: Likewise.
* config/sparc/sparc.c: Likewise.
* genconditions.c: Include memmodel.h in generated file.
* genemit.c: Likewise.
* genoutput.c: Likewise.
* genpeep.c: Likewise.
* genpreds.c: Likewise.
* genrecog.c: Likewise.
gcc/c-family/
* c-common.c: Include memmodel.h.
From-SVN: r240504
Diffstat (limited to 'gcc/tsan.c')
-rw-r--r-- | gcc/tsan.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ along with GCC; see the file COPYING3. If not see #include "backend.h" #include "rtl.h" #include "tree.h" +#include "memmodel.h" #include "gimple.h" #include "tree-pass.h" #include "ssa.h" |