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

Unified Diff: include/clang/Driver/Options.td

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 side-by-side diff with in-line comments
Download patch
Index: include/clang/Driver/Options.td
diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td
index 42b3a41e5cb427eb980662d183317b417b326a4a..95da0cf48be5349ed697f318b4e26e2c66472dc9 100644
--- a/include/clang/Driver/Options.td
+++ b/include/clang/Driver/Options.td
@@ -1227,8 +1227,8 @@ def mno_prfchw : Flag<["-"], "mno-prfchw">, Group<m_x86_Features_Group>;
def mno_rdseed : Flag<["-"], "mno-rdseed">, Group<m_x86_Features_Group>;
def mno_adx : Flag<["-"], "mno-adx">, Group<m_x86_Features_Group>;
def mno_sha : Flag<["-"], "mno-sha">, Group<m_x86_Features_Group>;
-def malign_double : Flag<["-"], "malign-double">, Group<m_x86_Features_Group>; // @LOCALMOD
-def mnoalign_double : Flag<["-"], "mno-align-double">, Group<m_x86_Features_Group>; // @LOCALMOD
+def malign_double : Flag<["-"], "malign-double">, Group<m_Group>; // @LOCALMOD
+def mnoalign_double : Flag<["-"], "mno-align-double">, Group<clang_ignored_m_Group>; // @LOCALMOD
def munaligned_access : Flag<["-"], "munaligned-access">, Group<m_arm_Features_Group>,
HelpText<"Allow memory accesses to be unaligned (AArch32/AArch64 only)">;

Powered by Google App Engine
This is Rietveld 408576698