Skip to content

Commit 50c5704

Browse files
authored
modulemap: add arm64 intrinsics header (#142653)
The header was missing from the modulemap definition, resulting in a breakage for Swift with recent Windows SDK headers.
1 parent 96c1fd4 commit 50c5704

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

clang/lib/Headers/module.modulemap

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ module _Builtin_intrinsics [system] [extern_c] {
3535
}
3636
}
3737

38+
explicit module arm64 {
39+
requires arm64
40+
requires windows
41+
42+
header "arm64intr.h"
43+
export *
44+
}
45+
3846
explicit module intel {
3947
requires x86
4048
export *

0 commit comments

Comments
 (0)