[clang][bytecode][NFC] Remove some dead code (#146287)

This commit is contained in:
Timm Baeder
2025-06-30 08:35:01 +02:00
committed by GitHub
parent 2d94c08d03
commit 629126ed44

View File

@@ -27,8 +27,6 @@ void FunctionPointer::print(llvm::raw_ostream &OS) const {
OS << "FnPtr(";
if (Func)
OS << Func->getName();
else if (Func)
OS << reinterpret_cast<uintptr_t>(Func);
else
OS << "nullptr";
OS << ")";