Skip to content
Closed
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
6 changes: 6 additions & 0 deletions llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9710,6 +9710,12 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
if (visitUnaryFloatCall(I, ISD::FROUND))
return;
break;
case LibFunc_roundeven:
case LibFunc_roundevenf:
case LibFunc_roundevenl:
if (visitUnaryFloatCall(I, ISD::FROUNDEVEN))
return;
break;
case LibFunc_trunc:
case LibFunc_truncf:
case LibFunc_truncl:
Expand Down
Loading