From: Bob Wilson Date: Tue, 21 Jun 2011 21:12:21 +0000 (+0000) Subject: Fix cut-and-paste error: --stdlib is an alias for -stdlib, not -std. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee273b3b312642da33dd832125206d30e07fc811;p=clang Fix cut-and-paste error: --stdlib is an alias for -stdlib, not -std. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133546 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index 6f62489634..c696548448 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -813,8 +813,8 @@ def _specs : Separate<"--specs">, Alias; def _static : Flag<"--static">, Alias; def _std_EQ : Joined<"--std=">, Alias; def _std : Separate<"--std">, Alias; -def _stdlib_EQ : Joined<"--stdlib=">, Alias; -def _stdlib : Separate<"--stdlib">, Alias; +def _stdlib_EQ : Joined<"--stdlib=">, Alias; +def _stdlib : Separate<"--stdlib">, Alias; def _sysroot_EQ : Joined<"--sysroot=">; def _sysroot : Separate<"--sysroot">, Alias<_sysroot_EQ>; def _target_help : Flag<"--target-help">;