commit | 56b10ab938f230dba1378830522850cb15dd4699 | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Thu Mar 19 08:03:45 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Thu Mar 19 08:03:45 2009 +0000 |
tree | 72e3d8921412a7c1840affdbf9c69240c781c21b | |
parent | ceafbc8f55e00345a85d5e6674d3339a45cbbf76 [diff] [blame] |
Driver: Compilation::Execute wasn't returning result code correctly. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67296 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Driver/Compilation.cpp b/lib/Driver/Compilation.cpp index 4b323a6..48796af 100644 --- a/lib/Driver/Compilation.cpp +++ b/lib/Driver/Compilation.cpp
@@ -169,5 +169,5 @@ if (Res != 0) CleanupFileList(ResultFiles, true); - return 0; + return Res; }