| OLD | NEW |
| 1 //===--- TargetOptions.h ----------------------------------------*- C++ -*-===// | 1 //===--- TargetOptions.h ----------------------------------------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
| 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 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 /// If given, the version string of the linker in use. | 39 /// If given, the version string of the linker in use. |
| 40 std::string LinkerVersion; | 40 std::string LinkerVersion; |
| 41 | 41 |
| 42 /// \brief The list of target specific features to enable or disable, as writt
en on the command line. | 42 /// \brief The list of target specific features to enable or disable, as writt
en on the command line. |
| 43 std::vector<std::string> FeaturesAsWritten; | 43 std::vector<std::string> FeaturesAsWritten; |
| 44 | 44 |
| 45 /// The list of target specific features to enable or disable -- this should | 45 /// The list of target specific features to enable or disable -- this should |
| 46 /// be a list of strings starting with by '+' or '-'. | 46 /// be a list of strings starting with by '+' or '-'. |
| 47 std::vector<std::string> Features; | 47 std::vector<std::string> Features; |
| 48 |
| 49 // @LOCALMOD-START |
| 50 /// \brief A list of arguments to forward to LLVM's option processing; this |
| 51 /// should only be used for debugging and experimental features. |
| 52 std::vector<std::string> LLVMArgs; |
| 53 // @LOCALMOD-END |
| 48 }; | 54 }; |
| 49 | 55 |
| 50 } // end namespace clang | 56 } // end namespace clang |
| 51 | 57 |
| 52 #endif | 58 #endif |
| OLD | NEW |