From d6cb1fd7b366b7e3fa3cbe8129f11298279e72c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Thu, 20 Oct 2022 15:44:09 +0200 Subject: [PATCH] [clang][Interp][NFC] Remove some unused aliases. --- clang/lib/AST/Interp/ByteCodeExprGen.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/clang/lib/AST/Interp/ByteCodeExprGen.h b/clang/lib/AST/Interp/ByteCodeExprGen.h index ffe8e83..6cc45bd 100644 --- a/clang/lib/AST/Interp/ByteCodeExprGen.h +++ b/clang/lib/AST/Interp/ByteCodeExprGen.h @@ -41,12 +41,6 @@ template class ByteCodeExprGen : public ConstStmtVisitor, bool>, public Emitter { protected: - // Emitters for opcodes of various arities. - using NullaryFn = bool (ByteCodeExprGen::*)(const SourceInfo &); - using UnaryFn = bool (ByteCodeExprGen::*)(PrimType, const SourceInfo &); - using BinaryFn = bool (ByteCodeExprGen::*)(PrimType, PrimType, - const SourceInfo &); - // Aliases for types defined in the emitter. using LabelTy = typename Emitter::LabelTy; using AddrTy = typename Emitter::AddrTy; -- 2.7.4