[cfe-commits] r143913 - /cfe/trunk/www/get_started.html

David Blaikie dblaikie at gmail.com
Sun Nov 6 22:28:33 PST 2011


Author: dblaikie
Date: Mon Nov  7 00:28:33 2011
New Revision: 143913

URL: http://llvm.org/viewvc/llvm-project?rev=143913&view=rev
Log:
Colorize. (this is consistent with the coloring in diagnostics.html, but perhaps that's a bit out of date because it doesn't look like current clang behavior)

Modified:
    cfe/trunk/www/get_started.html

Modified: cfe/trunk/www/get_started.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/get_started.html?rev=143913&r1=143912&r2=143913&view=diff
==============================================================================
--- cfe/trunk/www/get_started.html (original)
+++ cfe/trunk/www/get_started.html Mon Nov  7 00:28:33 2011
@@ -243,9 +243,9 @@
 
 <pre class="code">
 $ <b>clang -fsyntax-only ~/t.c -pedantic</b>
-/Users/sabre/t.c:2:17: warning: extension used
-typedef float V __attribute__((vector_size(16)));
-                ^
+/Users/sabre/t.c:2:17: <font color="magenta">warning:</font> extension used
+<font color="darkgreen">typedef float V __attribute__((vector_size(16)));</font>
+<font color="blue">                ^</font>
 1 diagnostic generated.
 </pre>
 





More information about the cfe-commits mailing list