[TableGen] Fix a typo in r256733.
authorCraig Topper <craig.topper@gmail.com>
Mon, 4 Jan 2016 06:35:08 +0000 (06:35 +0000)
committerCraig Topper <craig.topper@gmail.com>
Mon, 4 Jan 2016 06:35:08 +0000 (06:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256734 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/TableGen/Record.h

index 32eb25c58d044ae6b3c42d775b1dce99feab73e3..4c1ef4013dda90a4d023a6aac083a837d62c1073 100644 (file)
@@ -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() {}