From: Craig Topper Date: Mon, 4 Jan 2016 06:35:08 +0000 (+0000) Subject: [TableGen] Fix a typo in r256733. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=15d448c8644faec5904d8a66e4a8b24642248a14;p=oota-llvm.git [TableGen] Fix a typo in r256733. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256734 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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() {}