aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2021-04-22 09:39:39 +0200
committerMartin Liska <mliska@suse.cz>2021-05-10 09:16:17 +0200
commit4bc6fb21bd932ba37ffb14795002f7214b8e3cfd (patch)
tree54d97943e8f4b9aef56c20a449593ea5e815fe68 /gcc/bitmap.h
parente3a682f4197f9f39808febfd1862e722d7675d34 (diff)
downloadgcc-4bc6fb21bd932ba37ffb14795002f7214b8e3cfd.zip
gcc-4bc6fb21bd932ba37ffb14795002f7214b8e3cfd.tar.gz
gcc-4bc6fb21bd932ba37ffb14795002f7214b8e3cfd.tar.bz2
Remove __cplusplus >= 201103
Right now, we require a C++11 compiler, so the check is not needed any longer. gcc/analyzer/ChangeLog: * program-state.cc (program_state::operator=): Remove __cplusplus >= 201103. (program_state::program_state): Likewise. * program-state.h: Likewise. * region-model.h (class region_model): Remove dead code. gcc/ChangeLog: * bitmap.h (class auto_bitmap): Remove __cplusplus >= 201103. * config/aarch64/aarch64.c: Likewise. * gimple-ssa-store-merging.c (store_immediate_info::store_immediate_info): Likewise. * sbitmap.h: Likewise.
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index 84632af..2613855 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -951,10 +951,8 @@ class auto_bitmap
// Prevent making a copy that references our bitmap.
auto_bitmap (const auto_bitmap &);
auto_bitmap &operator = (const auto_bitmap &);
-#if __cplusplus >= 201103L
auto_bitmap (auto_bitmap &&);
auto_bitmap &operator = (auto_bitmap &&);
-#endif
bitmap_head m_bits;
};