-
Notifications
You must be signed in to change notification settings - Fork 787
[SYCL] Fix unused variable warnings #12523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ With the latest revision this PR passed the C/C++ code formatter. |
@@ -72,35 +72,30 @@ TEST_F(SchedulerTest, InOrderQueueSyncCheck) { | |||
{ | |||
LimitedHandlerSimulation MockCGH; | |||
EXPECT_CALL(MockCGH, depends_on).Times(0); | |||
Queue->finalizeHandler<LimitedHandlerSimulation>( | |||
MockCGH, detail::CG::CGTYPE::CodeplayHostTask, Event); | |||
Queue->finalizeHandler<LimitedHandlerSimulation>(MockCGH, Event); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, most of these checks are identical now, so the test needs to be trimmed down. I'd rather do so in a follow up PR though to fix post-commit ASAP.
@intel/llvm-reviewers-runtime Could you please have a quick look? |
This reverts commit 2f56926.
Fixes warnings introduced in #11758