[clang][Interp][NFC] Remove some unused aliases.
authorTimm Bäder <tbaeder@redhat.com>
Thu, 20 Oct 2022 13:44:09 +0000 (15:44 +0200)
committerTimm Bäder <tbaeder@redhat.com>
Fri, 21 Oct 2022 08:49:45 +0000 (10:49 +0200)
clang/lib/AST/Interp/ByteCodeExprGen.h

index ffe8e83..6cc45bd 100644 (file)
@@ -41,12 +41,6 @@ template <class Emitter>
 class ByteCodeExprGen : public ConstStmtVisitor<ByteCodeExprGen<Emitter>, 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;