From 15d448c8644faec5904d8a66e4a8b24642248a14 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 4 Jan 2016 06:35:08 +0000 Subject: [PATCH] [TableGen] Fix a typo in r256733. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256734 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/TableGen/Record.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/TableGen/Record.h b/include/llvm/TableGen/Record.h index 32eb25c58d0..4c1ef4013dd 100644 --- a/include/llvm/TableGen/Record.h +++ b/include/llvm/TableGen/Record.h @@ -267,7 +267,7 @@ public: InitKind getKind() const { return Kind; } protected: - explicit Init(InitKind K, uint8_t Opc = 0) : Kind(K), Opc(Opoc) {} + explicit Init(InitKind K, uint8_t Opc = 0) : Kind(K), Opc(Opc) {} public: virtual ~Init() {} -- 2.34.1