diff --git a/clang/www/get_started.html b/clang/www/get_started.html --- a/clang/www/get_started.html +++ b/clang/www/get_started.html @@ -279,13 +279,13 @@
Note, the -cc1 argument indicates the compiler front-end, and +
Note, the -Xclang argument indicates the compiler front-end, and not the driver, should be run. The compiler front-end has several additional Clang specific features which are not exposed through the GCC compatible driver interface.
-$ clang -cc1 ~/t.c -ast-print +$ clang -Xclang ~/t.c -ast-print typedef float V __attribute__(( vector_size(16) )); V foo(V a, V b) { return a + b * a;