commit | 0ef9a23251789b54da1c85b89e815318bc4193a6 | [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 | 3c27dbc90645d3d5b77786c0d4dddf8b8be7c0b2 [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; }