diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-19 08:03:45 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-19 08:03:45 +0000 |
commit | 56b10ab938f230dba1378830522850cb15dd4699 (patch) | |
tree | 72e3d8921412a7c1840affdbf9c69240c781c21b | |
parent | ceafbc8f55e00345a85d5e6674d3339a45cbbf76 (diff) |
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
-rw-r--r-- | lib/Driver/Compilation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Compilation.cpp b/lib/Driver/Compilation.cpp index 4b323a6457..48796afd82 100644 --- a/lib/Driver/Compilation.cpp +++ b/lib/Driver/Compilation.cpp @@ -169,5 +169,5 @@ int Compilation::Execute() const { if (Res != 0) CleanupFileList(ResultFiles, true); - return 0; + return Res; } |