Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.

Commit e968136

Browse files
Merge branch 'npu/release/19.x' into md/security_update_2025ww25
2 parents 6dfcf86 + af2f831 commit e968136

File tree

7 files changed

+31
-16
lines changed

7 files changed

+31
-16
lines changed

lldb/tools/lldb-dap/package-lock.json

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

llvm/cmake/modules/HandleLLVMOptions.cmake

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,16 @@ if (MSVC)
765765

766766
# Enable warnings
767767
if (LLVM_ENABLE_WARNINGS)
768+
# Remove all -wd flag to enable warnings
769+
if (NOT CLANG_CL)
770+
set(msvc_warning_flags
771+
# Promoted warnings.
772+
-w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
773+
774+
# Promoted warnings to errors.
775+
-we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
776+
)
777+
endif(NOT CLANG_CL)
768778
# Put /W4 in front of all the -we flags. cl.exe doesn't care, but for
769779
# clang-cl having /W4 after the -we flags will re-enable the warnings
770780
# disabled by -we.

llvm/docs/requirements-hashed.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ imagesize==1.4.1 \
136136
--hash=sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b \
137137
--hash=sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a
138138
# via sphinx
139-
jinja2==3.1.4 \
140-
--hash=sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369 \
141-
--hash=sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d
139+
jinja2==3.1.6 \
140+
--hash=sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d \
141+
--hash=sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67
142142
# via
143143
# myst-parser
144144
# sphinx

llvm/lib/Support/Windows/Threading.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ void llvm_thread_join_impl(HANDLE hThread) {
4141
if (::WaitForSingleObject(hThread, INFINITE) == WAIT_FAILED) {
4242
ReportLastErrorFatal("WaitForSingleObject failed");
4343
}
44+
if (::CloseHandle(hThread) == FALSE) {
45+
ReportLastErrorFatal("CloseHandle failed");
46+
}
4447
}
4548

4649
void llvm_thread_detach_impl(HANDLE hThread) {

llvm/utils/git/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ charset-normalizer==3.3.2 \
156156
--hash=sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519 \
157157
--hash=sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561
158158
# via requests
159-
cryptography==43.0.1
159+
cryptography==44.0.1
160160
# via pyjwt
161161
deprecated==1.2.14 \
162162
--hash=sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c \

llvm/utils/git/requirements_formatting.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ charset-normalizer==3.3.2
1818
# via requests
1919
click==8.1.7
2020
# via black
21-
cryptography==43.0.1
21+
cryptography==44.0.1
2222
# via pyjwt
2323
darker==1.7.2
2424
# via -r llvm/utils/git/requirements_formatting.txt.in

mlir/utils/vscode/package-lock.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)