Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions clang/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ C Language Changes
- Clang now allows an ``inline`` specifier on a typedef declaration of a
function type in Microsoft compatibility mode. #GH124869
- Clang now allows ``restrict`` qualifier for array types with pointer elements (#GH92847).
- Clang no longer provides the ``tgmath.h`` header as part of the compiler-
provided header files. This file needs to be provided by the C Standard
Library being compiled against.

C2y Feature Support
^^^^^^^^^^^^^^^^^^^
Expand Down
1 change: 0 additions & 1 deletion clang/lib/Headers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ set(core_files
__stddef_wint_t.h
stdint.h
stdnoreturn.h
tgmath.h
unwind.h
varargs.h
)
Expand Down
5 changes: 0 additions & 5 deletions clang/lib/Headers/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,6 @@ module _Builtin_stdnoreturn [system] {
export *
}

module _Builtin_tgmath [system] {
header "tgmath.h"
export *
}

module _Builtin_unwind [system] {
header "unwind.h"
export *
Expand Down
Loading
Loading