diff options
| author | Craig Topper <craig.topper@gmail.com> | 2016-01-04 06:35:08 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2016-01-04 06:35:08 +0000 |
| commit | ec9a589598d2c2103c66584d4134a991fea6841e (patch) | |
| tree | f0ea3d3a5456ee81e434a768ffcdecb1caf71c8d | |
| parent | 5a6dda53766ee5569ecc18c8b3a1cad33acb6380 (diff) | |
| download | bcm5719-llvm-ec9a589598d2c2103c66584d4134a991fea6841e.tar.gz bcm5719-llvm-ec9a589598d2c2103c66584d4134a991fea6841e.zip | |
[TableGen] Fix a typo in r256733.
llvm-svn: 256734
| -rw-r--r-- | llvm/include/llvm/TableGen/Record.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/TableGen/Record.h b/llvm/include/llvm/TableGen/Record.h index 32eb25c58d0..4c1ef4013dd 100644 --- a/llvm/include/llvm/TableGen/Record.h +++ b/llvm/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() {} |

