]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/llvm/CompilerDriver/BuiltinOptions.h
Update LLVM to r89205.
[FreeBSD/FreeBSD.git] / include / llvm / CompilerDriver / BuiltinOptions.h
1 //===--- BuiltinOptions.h - The LLVM Compiler Driver ------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open
6 // Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  Declarations of all global command-line option variables.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_INCLUDE_COMPILER_DRIVER_BUILTIN_OPTIONS_H
15 #define LLVM_INCLUDE_COMPILER_DRIVER_BUILTIN_OPTIONS_H
16
17 #include "llvm/Support/CommandLine.h"
18
19 #include <string>
20
21 namespace SaveTempsEnum { enum Values { Cwd, Obj, Unset }; }
22
23 extern llvm::cl::list<std::string> InputFilenames;
24 extern llvm::cl::opt<std::string> OutputFilename;
25 extern llvm::cl::opt<std::string> TempDirname;
26 extern llvm::cl::list<std::string> Languages;
27 extern llvm::cl::opt<bool> DryRun;
28 extern llvm::cl::opt<bool> Time;
29 extern llvm::cl::opt<bool> VerboseMode;
30 extern llvm::cl::opt<bool> CheckGraph;
31 extern llvm::cl::opt<bool> ViewGraph;
32 extern llvm::cl::opt<bool> WriteGraph;
33 extern llvm::cl::opt<SaveTempsEnum::Values> SaveTemps;
34
35 #endif // LLVM_INCLUDE_COMPILER_DRIVER_BUILTIN_OPTIONS_H