From 56b10ab938f230dba1378830522850cb15dd4699 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 19 Mar 2009 08:03:45 +0000 Subject: [PATCH] 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 --- lib/Driver/Compilation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1