OLD | NEW |
---|---|
1 //===- subzero/src/IceClFlags.cpp - Command line flags and parsing --------===// | 1 //===- subzero/src/IceClFlags.cpp - Command line flags and parsing --------===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
11 /// This file defines commandline flags parsing. This currently relies on | 11 /// \brief Defines commandline flags parsing. |
12 /// llvm::cl to parse. In the future, the minimal build can have a simpler | 12 /// |
13 /// parser. | 13 /// This currently relies on llvm::cl to parse. In the future, the minimal |
Jim Stichnoth
2015/12/02 21:50:38
Reflow to 80-col ("build" should fit on this line)
rkotlerimgtec
2015/12/02 23:58:14
Done.
| |
14 /// build can have a simpler parser. | |
14 /// | 15 /// |
15 //===----------------------------------------------------------------------===// | 16 //===----------------------------------------------------------------------===// |
16 | 17 |
17 #include "IceClFlags.h" | 18 #include "IceClFlags.h" |
18 | 19 |
19 #include "IceClFlagsExtra.h" | 20 #include "IceClFlagsExtra.h" |
20 | 21 |
21 #pragma clang diagnostic push | 22 #pragma clang diagnostic push |
22 #pragma clang diagnostic ignored "-Wunused-parameter" | 23 #pragma clang diagnostic ignored "-Wunused-parameter" |
23 #include "llvm/Support/CommandLine.h" | 24 #include "llvm/Support/CommandLine.h" |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
503 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); | 504 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); |
504 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); | 505 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); |
505 OutFlagsExtra.setAppName(AppName); | 506 OutFlagsExtra.setAppName(AppName); |
506 OutFlagsExtra.setInputFileFormat(InputFileFormat); | 507 OutFlagsExtra.setInputFileFormat(InputFileFormat); |
507 OutFlagsExtra.setIRFilename(IRFilename); | 508 OutFlagsExtra.setIRFilename(IRFilename); |
508 OutFlagsExtra.setLogFilename(LogFilename); | 509 OutFlagsExtra.setLogFilename(LogFilename); |
509 OutFlagsExtra.setOutputFilename(OutputFilename); | 510 OutFlagsExtra.setOutputFilename(OutputFilename); |
510 } | 511 } |
511 | 512 |
512 } // end of namespace Ice | 513 } // end of namespace Ice |
OLD | NEW |