Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 6f931f1

Browse files
Merge pull request #1392 from redstar/systemz
Use new version identifier SystemZ instead of S390X.
2 parents 60ecf0c + 82c040a commit 6f931f1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

benchmark/gcbench/vdparser.extra/vdc/versions.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static @property int[string] sPredefinedVersions()
8080
"SPARC_HardFloat" : -1,
8181
"SPARC64" : -1,
8282
"S390" : -1,
83-
"S390X" : -1,
83+
"SystemZ" : -1,
8484
"HPPA" : -1,
8585
"HPPA64" : -1,
8686
"SH" : -1,

src/core/sys/linux/sys/mman.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ else version (S390)
8080
}
8181
}
8282
// http://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/s390/bits/mman.h
83-
else version (S390X)
83+
else version (SystemZ)
8484
{
8585
static if (__USE_MISC) enum
8686
{

src/core/sys/posix/sys/mman.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ version( CRuntime_Glibc )
223223
private enum DEFAULTS = true;
224224
else version (S390)
225225
private enum DEFAULTS = true;
226-
else version (S390X)
226+
else version (SystemZ)
227227
private enum DEFAULTS = true;
228228
else version (IA64)
229229
private enum DEFAULTS = true;

src/core/sys/posix/sys/types.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ version (CRuntime_Glibc)
462462
enum __SIZEOF_PTHREAD_BARRIER_T = 20;
463463
enum __SIZEOF_PTHREAD_BARRIERATTR_T = 4;
464464
}
465-
else version (S390X)
465+
else version (SystemZ)
466466
{
467467
enum __SIZEOF_PTHREAD_ATTR_T = 56;
468468
enum __SIZEOF_PTHREAD_MUTEX_T = 40;

0 commit comments

Comments
 (0)