mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-09-06 14:01:37 +00:00
D front-end changes:
- Import dmd v2.099.0-beta.1.
- It's now an error to use `alias this' for partial assignment.
- The `delete' keyword has been removed from the language.
- Using `this' and `super' as types has been removed from the
language, the parser no longer specially handles this wrong code
with an informative error.
D Runtime changes:
- Import druntime v2.099.0-beta.1.
Phobos changes:
- Import phobos v2.099.0-beta.1.
gcc/d/ChangeLog:
* dmd/MERGE: Merge upstream dmd cb49e99f8.
* dmd/VERSION: Update version to v2.099.0-beta.1.
* decl.cc (layout_class_initializer): Update call to NewExp::create.
* expr.cc (ExprVisitor::visit (DeleteExp *)): Remove handling of
deleting arrays and pointers.
(ExprVisitor::visit (DotVarExp *)): Convert complex types to the
front-end library type representing them.
(ExprVisitor::visit (StringExp *)): Use getCodeUnit instead of charAt
to get the value of each index in a string expression.
* runtime.def (DELMEMORY): Remove.
(DELARRAYT): Remove.
* types.cc (TypeVisitor::visit (TypeEnum *)): Handle anonymous enums.
libphobos/ChangeLog:
* libdruntime/MERGE: Merge upstream druntime 55528bd1.
* src/MERGE: Merge upstream phobos 1a3e80ec2.
* testsuite/libphobos.hash/test_hash.d: Update.
* testsuite/libphobos.betterc/test19933.d: New test.
33 lines
810 B
D
33 lines
810 B
D
/**
|
|
* D header file for GNU/Linux
|
|
*
|
|
* Authors: Martin Nowak
|
|
*/
|
|
module core.sys.linux.config;
|
|
|
|
version (linux):
|
|
|
|
public import core.sys.posix.config;
|
|
|
|
// man 7 feature_test_macros
|
|
// http://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
|
|
enum _GNU_SOURCE = true;
|
|
// deduced <features.h>
|
|
// http://sourceware.org/git/?p=glibc.git;a=blob;f=include/features.h
|
|
enum _DEFAULT_SOURCE = true;
|
|
enum _ATFILE_SOURCE = true;
|
|
|
|
// _BSD_SOURCE and _SVID_SOURCE are deprecated aliases for _DEFAULT_SOURCE.
|
|
deprecated("use _DEFAULT_SOURCE")
|
|
{
|
|
enum _BSD_SOURCE = true;
|
|
enum _SVID_SOURCE = true;
|
|
}
|
|
|
|
deprecated("use _DEFAULT_SOURCE")
|
|
enum __USE_MISC = _DEFAULT_SOURCE;
|
|
deprecated("use _ATFILE_SOURCE")
|
|
enum __USE_ATFILE = _ATFILE_SOURCE;
|
|
deprecated("use _GNU_SOURCE")
|
|
enum __USE_GNU = _GNU_SOURCE;
|