diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:22:39 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:22:39 +0000 |
| commit | 40d67c59d5ceb9fec5d95a391e396c21b7c5c674 (patch) | |
| tree | ab967dfcc20aa49826942c6bc249bef9c7bc6488 /llvm/lib/Target/MSIL/MSILWriter.cpp | |
| parent | 035eaacd1fd5406ea248a0275f7ad8207da6db21 (diff) | |
| download | bcm5719-llvm-40d67c59d5ceb9fec5d95a391e396c21b7c5c674.tar.gz bcm5719-llvm-40d67c59d5ceb9fec5d95a391e396c21b7c5c674.zip | |
Remove bunch of gcc 4.3-related warnings from Target
llvm-svn: 47369
Diffstat (limited to 'llvm/lib/Target/MSIL/MSILWriter.cpp')
| -rw-r--r-- | llvm/lib/Target/MSIL/MSILWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSIL/MSILWriter.cpp b/llvm/lib/Target/MSIL/MSILWriter.cpp index 72ccc3a2c39..be9fc64bd8e 100644 --- a/llvm/lib/Target/MSIL/MSILWriter.cpp +++ b/llvm/lib/Target/MSIL/MSILWriter.cpp @@ -202,7 +202,7 @@ void MSILWriter::printModuleStartup() { } bool RetVoid = (F->getReturnType()->getTypeID() == Type::VoidTyID); - if (BadSig || !F->getReturnType()->isInteger() && !RetVoid) { + if (BadSig || (!F->getReturnType()->isInteger() && !RetVoid)) { Out << "\tldc.i4.0\n"; } else { Out << "\tcall\t" << getTypeName(F->getReturnType()) << |

