mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Add -disable-output option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47422 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
063284c001
commit
ef00f9d377
@ -39,6 +39,9 @@ OutputFilename("o", cl::desc("Override output filename"),
|
||||
static cl::opt<bool>
|
||||
Force("f", cl::desc("Overwrite output files"));
|
||||
|
||||
static cl::opt<bool>
|
||||
DisableOutput("disable-output", cl::desc("Disable output"), cl::init(false));
|
||||
|
||||
static cl::opt<bool>
|
||||
DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden);
|
||||
|
||||
@ -125,8 +128,9 @@ int main(int argc, char **argv) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (Force || !CheckBitcodeOutputToConsole(Out,true))
|
||||
WriteBitcodeToFile(M.get(), *Out);
|
||||
if (!DisableOutput)
|
||||
if (Force || !CheckBitcodeOutputToConsole(Out,true))
|
||||
WriteBitcodeToFile(M.get(), *Out);
|
||||
} catch (const std::string& msg) {
|
||||
cerr << argv[0] << ": " << msg << "\n";
|
||||
exitCode = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user