From bfb85e676c792f90c5ff27edc87f423c28c8f90f Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Fri, 15 Jun 2012 01:15:47 +0000 Subject: [PATCH] Had a closing brace inside an #ifdef -- oops! llvm-svn: 158485 --- llvm/lib/Object/COFFObjectFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Object/COFFObjectFile.cpp b/llvm/lib/Object/COFFObjectFile.cpp index 061cc872de50..a8f8d604db8a 100644 --- a/llvm/lib/Object/COFFObjectFile.cpp +++ b/llvm/lib/Object/COFFObjectFile.cpp @@ -639,8 +639,8 @@ ArrayRef COFFObjectFile::getSymbolAuxData( assert((offset - Header->PointerToSymbolTable) % sizeof(coff_symbol) == 0 && "Aux Symbol data did not point to the beginning of a symbol"); - } # endif + } return ArrayRef(aux, symbol->NumberOfAuxSymbols * sizeof(coff_symbol)); }