From a69975d8349c1e0dcb86814df67d7160395b468e Mon Sep 17 00:00:00 2001 From: Timm Baeder Date: Fri, 7 Feb 2025 14:24:15 +0100 Subject: [PATCH] [clang][bytecode] Remove unnecessary if statement (#126223) This doesn't seem to do any good and breaks a few libc++ tests. Remove the special case. --- clang/lib/AST/ByteCode/Compiler.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/clang/lib/AST/ByteCode/Compiler.cpp b/clang/lib/AST/ByteCode/Compiler.cpp index 1e1e96a1c4782f4..1f0e022edcd7687 100644 --- a/clang/lib/AST/ByteCode/Compiler.cpp +++ b/clang/lib/AST/ByteCode/Compiler.cpp @@ -6234,9 +6234,6 @@ bool Compiler::visitDeclRef(const ValueDecl *D, const Expr *E) { return this->emitGetPtrParam(It->second.Offset, E); } - - if (D->getType()->isReferenceType()) - return this->emitDummyPtr(D, E); } // In case we need to re-visit a declaration.