We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f362c7 commit e40f5d3Copy full SHA for e40f5d3
llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -570,9 +570,10 @@ bool FastISel::SelectCall(const User *I) {
570
// Handle selected intrinsic function calls.
571
switch (F->getIntrinsicID()) {
572
default: break;
573
- // At -O0 we don't care about the lifetime intrinsics.
+ // At -O0 we don't care about the lifetime or expect intrinsics.
574
case Intrinsic::lifetime_start:
575
case Intrinsic::lifetime_end:
576
+ case Intrinsic::expect:
577
return true;
578
case Intrinsic::dbg_declare: {
579
const DbgDeclareInst *DI = cast<DbgDeclareInst>(Call);
0 commit comments