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 03934d0 commit 79eed76Copy full SHA for 79eed76
clang/lib/AST/ByteCode/InterpFrame.cpp
@@ -133,11 +133,7 @@ static bool shouldSkipInBacktrace(const Function *F) {
133
}
134
135
void InterpFrame::describe(llvm::raw_ostream &OS) const {
136
- // We create frames for builtin functions as well, but we can't reliably
137
- // diagnose them. The 'in call to' diagnostics for them add no value to the
138
- // user _and_ it doesn't generally work since the argument types don't always
139
- // match the function prototype. Just ignore them.
140
- // Similarly, for lambda static invokers, we would just print __invoke().
+ // For lambda static invokers, we would just print __invoke().
141
if (const auto *F = getFunction(); F && shouldSkipInBacktrace(F))
142
return;
143
0 commit comments