diff options
Diffstat (limited to 'gcc/c-family/c-cppbuiltin.c')
-rw-r--r-- | gcc/c-family/c-cppbuiltin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-family/c-cppbuiltin.c b/gcc/c-family/c-cppbuiltin.c index 057776f..6cdb32c 100644 --- a/gcc/c-family/c-cppbuiltin.c +++ b/gcc/c-family/c-cppbuiltin.c @@ -866,8 +866,9 @@ c_cpp_builtins (cpp_reader *pfile) cpp_define (pfile, "__cpp_aggregate_nsdmi=201304"); cpp_define (pfile, "__cpp_variable_templates=201304"); cpp_define (pfile, "__cpp_digit_separators=201309"); - //cpp_define (pfile, "__cpp_sized_deallocation=201309"); } + if (flag_sized_deallocation) + cpp_define (pfile, "__cpp_sized_deallocation=201309"); } /* Note that we define this for C as well, so that we know if __attribute__((cleanup)) will interface with EH. */ |