[cfe-commits] r130424 - /cfe/trunk/lib/Driver/Tools.cpp
Ted Kremenek
kremenek at apple.com
Thu Apr 28 12:26:03 PDT 2011
Author: kremenek
Date: Thu Apr 28 14:26:03 2011
New Revision: 130424
URL: http://llvm.org/viewvc/llvm-project?rev=130424&view=rev
Log:
Make the top-level driver ignore -fobjc-default-synthesize-properties while this feature undergoes more review and development. This is still available as a -cc1 option for testing.
Modified:
cfe/trunk/lib/Driver/Tools.cpp
Modified: cfe/trunk/lib/Driver/Tools.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Tools.cpp?rev=130424&r1=130423&r2=130424&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Tools.cpp (original)
+++ cfe/trunk/lib/Driver/Tools.cpp Thu Apr 28 14:26:03 2011
@@ -1705,12 +1705,18 @@
}
}
+ // FIXME: Don't expose -fobjc-default-synthesize-properties as a top-level
+ // driver flag yet. This feature is still under active development
+ // and shouldn't be exposed as a user visible feature (which may change).
+ // Clang still supports this as a -cc1 option for development and testing.
+#if 0
// -fobjc-default-synthesize-properties=0 is default.
if (Args.hasFlag(options::OPT_fobjc_default_synthesize_properties,
options::OPT_fno_objc_default_synthesize_properties,
getToolChain().IsObjCDefaultSynthPropertiesDefault())) {
CmdArgs.push_back("-fobjc-default-synthesize-properties");
}
+#endif
}
if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
More information about the cfe-commits
mailing list