[llvm] r256734 - [TableGen] Fix a typo in r256733.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sun Jan 3 22:35:08 PST 2016


Author: ctopper
Date: Mon Jan  4 00:35:08 2016
New Revision: 256734

URL: http://llvm.org/viewvc/llvm-project?rev=256734&view=rev
Log:
[TableGen] Fix a typo in r256733.

Modified:
    llvm/trunk/include/llvm/TableGen/Record.h

Modified: llvm/trunk/include/llvm/TableGen/Record.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/TableGen/Record.h?rev=256734&r1=256733&r2=256734&view=diff
==============================================================================
--- llvm/trunk/include/llvm/TableGen/Record.h (original)
+++ llvm/trunk/include/llvm/TableGen/Record.h Mon Jan  4 00:35:08 2016
@@ -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() {}




More information about the llvm-commits mailing list