[clang][bytecode][NFC] Remove incorrect comment (#139571)
We don't create function frames for builtin functions anymore.
diff --git a/clang/lib/AST/ByteCode/InterpFrame.cpp b/clang/lib/AST/ByteCode/InterpFrame.cpp
index e4bd4a6..a849ac7 100644
--- a/clang/lib/AST/ByteCode/InterpFrame.cpp
+++ b/clang/lib/AST/ByteCode/InterpFrame.cpp
@@ -133,11 +133,7 @@
}
void InterpFrame::describe(llvm::raw_ostream &OS) const {
- // We create frames for builtin functions as well, but we can't reliably
- // diagnose them. The 'in call to' diagnostics for them add no value to the
- // user _and_ it doesn't generally work since the argument types don't always
- // match the function prototype. Just ignore them.
- // Similarly, for lambda static invokers, we would just print __invoke().
+ // For lambda static invokers, we would just print __invoke().
if (const auto *F = getFunction(); F && shouldSkipInBacktrace(F))
return;