diff options
author | Zachary Turner <zturner@google.com> | 2017-05-18 23:30:51 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-18 23:30:51 +0000 |
commit | 613c29e45f8179c71d751e4e46b5706260d8b528 (patch) | |
tree | 9a3344b9b1a8c321e0c8a00b89e4bc567cab2284 /llvm/lib | |
parent | eab0de2b82da9b5d1c4efd782ead59a66e783248 (diff) | |
download | bcm5719-llvm-613c29e45f8179c71d751e4e46b5706260d8b528.tar.gz bcm5719-llvm-613c29e45f8179c71d751e4e46b5706260d8b528.zip |
Fix another warning.
llvm-svn: 303394
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index 7c2a7695718..ae14e000c38 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -495,7 +495,7 @@ void CodeViewDebug::emitTypeInformation() { CommentOS.str().drop_front(CommentPrefix.size() - 1).rtrim()); } OS.EmitBinaryData(Record.str_data()); - } while (B = Table.getNext(*B)); + } while ((B = Table.getNext(*B))); } namespace { |