[cfe-commits] r133546 - /cfe/trunk/include/clang/Driver/Options.td
Bob Wilson
bob.wilson at apple.com
Tue Jun 21 14:12:22 PDT 2011
Author: bwilson
Date: Tue Jun 21 16:12:21 2011
New Revision: 133546
URL: http://llvm.org/viewvc/llvm-project?rev=133546&view=rev
Log:
Fix cut-and-paste error: --stdlib is an alias for -stdlib, not -std.
Modified:
cfe/trunk/include/clang/Driver/Options.td
Modified: cfe/trunk/include/clang/Driver/Options.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Options.td?rev=133546&r1=133545&r2=133546&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Options.td (original)
+++ cfe/trunk/include/clang/Driver/Options.td Tue Jun 21 16:12:21 2011
@@ -813,8 +813,8 @@
def _static : Flag<"--static">, Alias<static>;
def _std_EQ : Joined<"--std=">, Alias<std_EQ>;
def _std : Separate<"--std">, Alias<std_EQ>;
-def _stdlib_EQ : Joined<"--stdlib=">, Alias<std_EQ>;
-def _stdlib : Separate<"--stdlib">, Alias<std_EQ>;
+def _stdlib_EQ : Joined<"--stdlib=">, Alias<stdlib_EQ>;
+def _stdlib : Separate<"--stdlib">, Alias<stdlib_EQ>;
def _sysroot_EQ : Joined<"--sysroot=">;
def _sysroot : Separate<"--sysroot">, Alias<_sysroot_EQ>;
def _target_help : Flag<"--target-help">;
More information about the cfe-commits
mailing list