Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Side by Side Diff: include/clang/Basic/TargetOptions.h

Issue 1323073010: Use LLVM args to handle -malign-double option (Closed) Base URL: https://chromium.googlesource.com/a/native_client/pnacl-clang.git@master
Patch Set: Review feedback addressed Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/clang/Basic/TargetInfo.h ('k') | include/clang/Driver/Options.td » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « include/clang/Basic/TargetInfo.h ('k') | include/clang/Driver/Options.td » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698