diff options
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 { |