aboutsummaryrefslogtreecommitdiff
path: root/libphobos/libdruntime
diff options
context:
space:
mode:
Diffstat (limited to 'libphobos/libdruntime')
-rw-r--r--libphobos/libdruntime/Makefile.am2
-rw-r--r--libphobos/libdruntime/__main.di2
-rw-r--r--libphobos/libdruntime/config/aarch64/switchcontext.S2
-rw-r--r--libphobos/libdruntime/config/arm/switchcontext.S2
-rw-r--r--libphobos/libdruntime/config/common/threadasm.S2
-rw-r--r--libphobos/libdruntime/config/mingw/msvc.c2
-rw-r--r--libphobos/libdruntime/config/mingw/switchcontext.S2
-rw-r--r--libphobos/libdruntime/config/mips/switchcontext.S2
-rw-r--r--libphobos/libdruntime/config/powerpc/switchcontext.S2
-rw-r--r--libphobos/libdruntime/config/s390/get_tls_offset.S2
-rw-r--r--libphobos/libdruntime/config/systemz/get_tls_offset.S2
-rw-r--r--libphobos/libdruntime/config/x86/switchcontext.S2
-rw-r--r--libphobos/libdruntime/gcc/attribute.d2
-rw-r--r--libphobos/libdruntime/gcc/attributes.d2
-rw-r--r--libphobos/libdruntime/gcc/backtrace.d2
-rw-r--r--libphobos/libdruntime/gcc/builtins.d2
-rw-r--r--libphobos/libdruntime/gcc/config.d.in2
-rw-r--r--libphobos/libdruntime/gcc/deh.d2
-rw-r--r--libphobos/libdruntime/gcc/drtstuff.c2
-rw-r--r--libphobos/libdruntime/gcc/emutls.d2
-rw-r--r--libphobos/libdruntime/gcc/gthread.d2
-rw-r--r--libphobos/libdruntime/gcc/libbacktrace.d.in2
-rw-r--r--libphobos/libdruntime/gcc/sections/common.d2
-rw-r--r--libphobos/libdruntime/gcc/sections/elf.d2
-rw-r--r--libphobos/libdruntime/gcc/sections/macho.d2
-rw-r--r--libphobos/libdruntime/gcc/sections/package.d2
-rw-r--r--libphobos/libdruntime/gcc/sections/pecoff.d2
-rw-r--r--libphobos/libdruntime/gcc/simd.d2
-rw-r--r--libphobos/libdruntime/gcc/unwind/arm.d2
-rw-r--r--libphobos/libdruntime/gcc/unwind/arm_common.d2
-rw-r--r--libphobos/libdruntime/gcc/unwind/c6x.d2
-rw-r--r--libphobos/libdruntime/gcc/unwind/generic.d2
-rw-r--r--libphobos/libdruntime/gcc/unwind/package.d2
-rw-r--r--libphobos/libdruntime/gcc/unwind/pe.d2
34 files changed, 34 insertions, 34 deletions
diff --git a/libphobos/libdruntime/Makefile.am b/libphobos/libdruntime/Makefile.am
index 45749d7..18154de 100644
--- a/libphobos/libdruntime/Makefile.am
+++ b/libphobos/libdruntime/Makefile.am
@@ -1,5 +1,5 @@
# Makefile for the D runtime library.
-# Copyright (C) 2012-2022 Free Software Foundation, Inc.
+# Copyright (C) 2012-2023 Free Software Foundation, Inc.
#
# GCC is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/libphobos/libdruntime/__main.di b/libphobos/libdruntime/__main.di
index 6dea7c2..5b50237 100644
--- a/libphobos/libdruntime/__main.di
+++ b/libphobos/libdruntime/__main.di
@@ -1,5 +1,5 @@
/* GDC -- D front-end for GCC
- Copyright (C) 2018-2022 Free Software Foundation, Inc.
+ Copyright (C) 2018-2023 Free Software Foundation, Inc.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/config/aarch64/switchcontext.S b/libphobos/libdruntime/config/aarch64/switchcontext.S
index cf96e28..5cfa2f6 100644
--- a/libphobos/libdruntime/config/aarch64/switchcontext.S
+++ b/libphobos/libdruntime/config/aarch64/switchcontext.S
@@ -1,5 +1,5 @@
/* AArch64 support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/arm/switchcontext.S b/libphobos/libdruntime/config/arm/switchcontext.S
index 562e0c7..3f9b35e 100644
--- a/libphobos/libdruntime/config/arm/switchcontext.S
+++ b/libphobos/libdruntime/config/arm/switchcontext.S
@@ -1,5 +1,5 @@
/* ARM support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/common/threadasm.S b/libphobos/libdruntime/config/common/threadasm.S
index d39014b..67c06fa 100644
--- a/libphobos/libdruntime/config/common/threadasm.S
+++ b/libphobos/libdruntime/config/common/threadasm.S
@@ -1,5 +1,5 @@
/* Support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/mingw/msvc.c b/libphobos/libdruntime/config/mingw/msvc.c
index 348b223..85a2d6d 100644
--- a/libphobos/libdruntime/config/mingw/msvc.c
+++ b/libphobos/libdruntime/config/mingw/msvc.c
@@ -1,6 +1,6 @@
/* Windows support code to wrap differences between different
versions of the Microsoft C libaries.
- Copyright (C) 2021-2022 Free Software Foundation, Inc.
+ Copyright (C) 2021-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/mingw/switchcontext.S b/libphobos/libdruntime/config/mingw/switchcontext.S
index 458e599..bc05454 100644
--- a/libphobos/libdruntime/config/mingw/switchcontext.S
+++ b/libphobos/libdruntime/config/mingw/switchcontext.S
@@ -1,5 +1,5 @@
/* Windows i386 support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/mips/switchcontext.S b/libphobos/libdruntime/config/mips/switchcontext.S
index 7c626ea..13df200 100644
--- a/libphobos/libdruntime/config/mips/switchcontext.S
+++ b/libphobos/libdruntime/config/mips/switchcontext.S
@@ -1,5 +1,5 @@
/* MIPS support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/powerpc/switchcontext.S b/libphobos/libdruntime/config/powerpc/switchcontext.S
index 376a221..10db856 100644
--- a/libphobos/libdruntime/config/powerpc/switchcontext.S
+++ b/libphobos/libdruntime/config/powerpc/switchcontext.S
@@ -1,5 +1,5 @@
/* PowerPC support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/s390/get_tls_offset.S b/libphobos/libdruntime/config/s390/get_tls_offset.S
index 6d5d5d4..6d797ad 100644
--- a/libphobos/libdruntime/config/s390/get_tls_offset.S
+++ b/libphobos/libdruntime/config/s390/get_tls_offset.S
@@ -1,5 +1,5 @@
/* IBM Z support code for TLS offsets.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/systemz/get_tls_offset.S b/libphobos/libdruntime/config/systemz/get_tls_offset.S
index ffb9687..0ff4fc3 100644
--- a/libphobos/libdruntime/config/systemz/get_tls_offset.S
+++ b/libphobos/libdruntime/config/systemz/get_tls_offset.S
@@ -1,5 +1,5 @@
/* IBM Z support code for TLS offsets.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/config/x86/switchcontext.S b/libphobos/libdruntime/config/x86/switchcontext.S
index a64fdb0..008a76e 100644
--- a/libphobos/libdruntime/config/x86/switchcontext.S
+++ b/libphobos/libdruntime/config/x86/switchcontext.S
@@ -1,5 +1,5 @@
/* i386 support code for fibers and multithreading.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/gcc/attribute.d b/libphobos/libdruntime/gcc/attribute.d
index 2b0ef4c..cd38179 100644
--- a/libphobos/libdruntime/gcc/attribute.d
+++ b/libphobos/libdruntime/gcc/attribute.d
@@ -1,5 +1,5 @@
// GNU D Compiler attribute support declarations.
-// Copyright (C) 2013-2022 Free Software Foundation, Inc.
+// Copyright (C) 2013-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/attributes.d b/libphobos/libdruntime/gcc/attributes.d
index 9d7f2e1..0839873 100644
--- a/libphobos/libdruntime/gcc/attributes.d
+++ b/libphobos/libdruntime/gcc/attributes.d
@@ -1,5 +1,5 @@
// GNU D Compiler attribute support declarations.
-// Copyright (C) 2021-2022 Free Software Foundation, Inc.
+// Copyright (C) 2021-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/backtrace.d b/libphobos/libdruntime/gcc/backtrace.d
index f7a6b20..eeaf078 100644
--- a/libphobos/libdruntime/gcc/backtrace.d
+++ b/libphobos/libdruntime/gcc/backtrace.d
@@ -1,5 +1,5 @@
// GNU D Compiler routines for stack backtrace support.
-// Copyright (C) 2013-2022 Free Software Foundation, Inc.
+// Copyright (C) 2013-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/builtins.d b/libphobos/libdruntime/gcc/builtins.d
index c154967..fe4318c 100644
--- a/libphobos/libdruntime/gcc/builtins.d
+++ b/libphobos/libdruntime/gcc/builtins.d
@@ -1,5 +1,5 @@
/* GNU D Compiler bindings for built-in functions and types.
- Copyright (C) 2006-2022 Free Software Foundation, Inc.
+ Copyright (C) 2006-2023 Free Software Foundation, Inc.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/config.d.in b/libphobos/libdruntime/gcc/config.d.in
index eaf47be..76d9eb7 100644
--- a/libphobos/libdruntime/gcc/config.d.in
+++ b/libphobos/libdruntime/gcc/config.d.in
@@ -1,5 +1,5 @@
// GNU D Compiler configure constants.
-// Copyright (C) 2015-2022 Free Software Foundation, Inc.
+// Copyright (C) 2015-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/deh.d b/libphobos/libdruntime/gcc/deh.d
index dbc83ad..da883a5 100644
--- a/libphobos/libdruntime/gcc/deh.d
+++ b/libphobos/libdruntime/gcc/deh.d
@@ -1,5 +1,5 @@
// GNU D Compiler exception personality routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/drtstuff.c b/libphobos/libdruntime/gcc/drtstuff.c
index cc05e7c..8556a87 100644
--- a/libphobos/libdruntime/gcc/drtstuff.c
+++ b/libphobos/libdruntime/gcc/drtstuff.c
@@ -1,6 +1,6 @@
/* Provide minfo section bracketing for D executables and shared libraries
when the linker doesn't provide it.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libphobos/libdruntime/gcc/emutls.d b/libphobos/libdruntime/gcc/emutls.d
index ee36032..af03965 100644
--- a/libphobos/libdruntime/gcc/emutls.d
+++ b/libphobos/libdruntime/gcc/emutls.d
@@ -1,5 +1,5 @@
// GNU D Compiler emulated TLS routines.
-// Copyright (C) 2019-2022 Free Software Foundation, Inc.
+// Copyright (C) 2019-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/gthread.d b/libphobos/libdruntime/gcc/gthread.d
index b25742c..de75068 100644
--- a/libphobos/libdruntime/gcc/gthread.d
+++ b/libphobos/libdruntime/gcc/gthread.d
@@ -1,5 +1,5 @@
// GNU D Compiler thread support for emulated TLS routines.
-// Copyright (C) 2019-2022 Free Software Foundation, Inc.
+// Copyright (C) 2019-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/libbacktrace.d.in b/libphobos/libdruntime/gcc/libbacktrace.d.in
index ea6f181..96382e1 100644
--- a/libphobos/libdruntime/gcc/libbacktrace.d.in
+++ b/libphobos/libdruntime/gcc/libbacktrace.d.in
@@ -1,5 +1,5 @@
// GNU D Compiler bindings for the stack backtrace functions.
-// Copyright (C) 2013-2022 Free Software Foundation, Inc.
+// Copyright (C) 2013-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/sections/common.d b/libphobos/libdruntime/gcc/sections/common.d
index 5fda4ca..e862c62 100644
--- a/libphobos/libdruntime/gcc/sections/common.d
+++ b/libphobos/libdruntime/gcc/sections/common.d
@@ -1,5 +1,5 @@
// Contains various utility functions used by the runtime implementation.
-// Copyright (C) 2019-2022 Free Software Foundation, Inc.
+// Copyright (C) 2019-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/sections/elf.d b/libphobos/libdruntime/gcc/sections/elf.d
index 5819811..0c7a771 100644
--- a/libphobos/libdruntime/gcc/sections/elf.d
+++ b/libphobos/libdruntime/gcc/sections/elf.d
@@ -1,5 +1,5 @@
// ELF-specific support for sections with shared libraries.
-// Copyright (C) 2019-2022 Free Software Foundation, Inc.
+// Copyright (C) 2019-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/sections/macho.d b/libphobos/libdruntime/gcc/sections/macho.d
index 8408366..d9ad5c6 100644
--- a/libphobos/libdruntime/gcc/sections/macho.d
+++ b/libphobos/libdruntime/gcc/sections/macho.d
@@ -1,5 +1,5 @@
// MACHO-specific support for sections.
-// Copyright (C) 2021-2022 Free Software Foundation, Inc.
+// Copyright (C) 2021-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/sections/package.d b/libphobos/libdruntime/gcc/sections/package.d
index 820fd3b..986d3b0 100644
--- a/libphobos/libdruntime/gcc/sections/package.d
+++ b/libphobos/libdruntime/gcc/sections/package.d
@@ -1,5 +1,5 @@
// Run-time support for retrieving platform-specific sections.
-// Copyright (C) 2019-2022 Free Software Foundation, Inc.
+// Copyright (C) 2019-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/sections/pecoff.d b/libphobos/libdruntime/gcc/sections/pecoff.d
index fd27798..97dc486 100644
--- a/libphobos/libdruntime/gcc/sections/pecoff.d
+++ b/libphobos/libdruntime/gcc/sections/pecoff.d
@@ -1,5 +1,5 @@
// PE/COFF-specific support for sections.
-// Copyright (C) 2021-2022 Free Software Foundation, Inc.
+// Copyright (C) 2021-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/simd.d b/libphobos/libdruntime/gcc/simd.d
index ebd94bf..2b9202e 100644
--- a/libphobos/libdruntime/gcc/simd.d
+++ b/libphobos/libdruntime/gcc/simd.d
@@ -1,5 +1,5 @@
// GNU D Compiler SIMD support functions and intrinsics.
-// Copyright (C) 2022 Free Software Foundation, Inc.
+// Copyright (C) 2022-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/unwind/arm.d b/libphobos/libdruntime/gcc/unwind/arm.d
index 18d4d19..20e2800 100644
--- a/libphobos/libdruntime/gcc/unwind/arm.d
+++ b/libphobos/libdruntime/gcc/unwind/arm.d
@@ -1,5 +1,5 @@
// Exception handling and frame unwind runtime interface routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/unwind/arm_common.d b/libphobos/libdruntime/gcc/unwind/arm_common.d
index b007fc1..cf08014 100644
--- a/libphobos/libdruntime/gcc/unwind/arm_common.d
+++ b/libphobos/libdruntime/gcc/unwind/arm_common.d
@@ -1,5 +1,5 @@
// Exception handling and frame unwind runtime interface routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/unwind/c6x.d b/libphobos/libdruntime/gcc/unwind/c6x.d
index 1556a36..72fd213 100644
--- a/libphobos/libdruntime/gcc/unwind/c6x.d
+++ b/libphobos/libdruntime/gcc/unwind/c6x.d
@@ -1,5 +1,5 @@
// Exception handling and frame unwind runtime interface routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/unwind/generic.d b/libphobos/libdruntime/gcc/unwind/generic.d
index 929b75d..e4bbb4b 100644
--- a/libphobos/libdruntime/gcc/unwind/generic.d
+++ b/libphobos/libdruntime/gcc/unwind/generic.d
@@ -1,5 +1,5 @@
// Exception handling and frame unwind runtime interface routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/unwind/package.d b/libphobos/libdruntime/gcc/unwind/package.d
index 56e7f88..8626725 100644
--- a/libphobos/libdruntime/gcc/unwind/package.d
+++ b/libphobos/libdruntime/gcc/unwind/package.d
@@ -1,5 +1,5 @@
// Exception handling and frame unwind runtime interface routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
diff --git a/libphobos/libdruntime/gcc/unwind/pe.d b/libphobos/libdruntime/gcc/unwind/pe.d
index e0305ab..e0111e7 100644
--- a/libphobos/libdruntime/gcc/unwind/pe.d
+++ b/libphobos/libdruntime/gcc/unwind/pe.d
@@ -1,5 +1,5 @@
// Exception handling and frame unwind runtime interface routines.
-// Copyright (C) 2011-2022 Free Software Foundation, Inc.
+// Copyright (C) 2011-2023 Free Software Foundation, Inc.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free