Files
llvm-6502/tools/llvmc/example/mcc16/driver/Main.cpp
Mikhail Glushenkov 091ca1c9e0 Show how to modify built-in options.
Sanjiv complained about the need to maintain local changes to
lib/CompilerDriver.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74912 91177308-0d34-0410-b5e6-96231b3b80d8
2009-07-07 16:39:33 +00:00

32 lines
939 B
C++

//===--- Main.cpp - The LLVM Compiler Driver -------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open
// Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Usually this file just includes CompilerDriver/Main.inc, but here we apply
// some trickery to make the built-in '-save-temps' option hidden and enabled
// by default.
//
//===----------------------------------------------------------------------===//
#include "llvm/CompilerDriver/BuiltinOptions.h"
#include "llvm/CompilerDriver/ForceLinkage.h"
namespace llvmc {
int Main(int argc, char** argv);
}
int main(int argc, char** argv) {
// HACK
SaveTemps = SaveTempsEnum::Obj;
SaveTemps.setHiddenFlag(llvm::cl::Hidden);
llvmc::ForceLinkage();
return llvmc::Main(argc, argv);
}