-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[VPlan] Refine the constructor of VPWidenIntrinsicRecipe. nfc #113890
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1489,7 +1489,7 @@ static void transformRecipestoEVLRecipes(VPlan &Plan, VPValue &EVL) { | |
| Ops.push_back(&EVL); | ||
| return new VPWidenIntrinsicRecipe(Intrinsic::vp_select, Ops, | ||
| TypeInfo.inferScalarType(Sel), | ||
| false, false, false); | ||
| Sel->getDebugLoc()); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this also sets the debug info where it didn't set it before which is good to fix as well, thanks. I think we need at least some tests for EVL vectorization with debug locations, to make sure they are preserved properly
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, maybe need to create new tests similar to |
||
| }) | ||
|
|
||
| .Default([&](VPRecipeBase *R) { return nullptr; }); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.