[cfe-commits] r147278 - /cfe/trunk/tools/driver/cc1as_main.cpp
Dylan Noblesmith
nobled at dreamwidth.org
Mon Dec 26 11:29:47 PST 2011
Author: nobled
Date: Mon Dec 26 13:29:47 2011
New Revision: 147278
URL: http://llvm.org/viewvc/llvm-project?rev=147278&view=rev
Log:
driver: fix unused variable warning
from r147218.
Modified:
cfe/trunk/tools/driver/cc1as_main.cpp
Modified: cfe/trunk/tools/driver/cc1as_main.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/driver/cc1as_main.cpp?rev=147278&r1=147277&r2=147278&view=diff
==============================================================================
--- cfe/trunk/tools/driver/cc1as_main.cpp (original)
+++ cfe/trunk/tools/driver/cc1as_main.cpp Mon Dec 26 13:29:47 2011
@@ -214,7 +214,7 @@
Opts.RelaxAll = Args->hasArg(OPT_relax_all);
Opts.NoExecStack = Args->hasArg(OPT_no_exec_stack);
- return true;
+ return Success;
}
static formatted_raw_ostream *GetOutputStream(AssemblerInvocation &Opts,
More information about the cfe-commits
mailing list