diff options
author | Zachary Turner <zturner@google.com> | 2016-11-02 17:10:55 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-11-02 17:10:55 +0000 |
commit | 564612aa77ad4378788f1c9bfa0c5de4279a7178 (patch) | |
tree | 78ebe859c5ca9f6a42500769dd592a06abfbea1f | |
parent | 7251ede7c5ee82d25e309b6a30952a6b5e7c1f89 (diff) | |
download | bcm5719-llvm-564612aa77ad4378788f1c9bfa0c5de4279a7178.tar.gz bcm5719-llvm-564612aa77ad4378788f1c9bfa0c5de4279a7178.zip |
Fix build due to missing definition.
llvm-svn: 285837
-rw-r--r-- | llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h b/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h index 773cfa22bc7..3a6a5b2d934 100644 --- a/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h +++ b/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h @@ -107,7 +107,7 @@ public: } else { typename T::value_type Field; // Stop when we run out of bytes or we hit record padding bytes. - while (!Reader->empty() && Reader->peek() < LF_PAD0) { + while (!Reader->empty() && Reader->peek() < 0xf0 /* LF_PAD0 */) { if (auto EC = Mapper(*this, Field)) return EC; Items.push_back(Field); |