Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/sycl-post-commit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: SYCL Post Commit
name: SYCL Post Committ

on:
workflow_dispatch:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/sycl-windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,11 @@ jobs:
- name: check-llvm
if: ${{ !cancelled() && contains(inputs.changes, 'llvm') }}
shell: bash
run: |
run: |
if [[ "${{ inputs.cxx == 'icx' }}" == "true" ]]; then
# https://github.com/intel/llvm/issues/22619
export LIT_FILTER_OUT="tools/obj2yaml/DXContainer/SRCIPart"
fi
cmake --build build --target check-llvm
- name: check-clang
if: ${{ !cancelled() && contains(inputs.changes, 'clang') }}
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Support/ConvertUTF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
#ifdef CVTUTF_DEBUG
#include <stdio.h>
#endif
#include <assert.h>
#include <assert.h>

/*
* This code extensively uses fall-through switches.
Expand Down
Loading