[llvm-commits] [www] r136825 - /www/trunk/demo/index.cgi

Tanya Lattner tonic at nondot.org
Wed Aug 3 15:27:49 PDT 2011


Author: tbrethou
Date: Wed Aug  3 17:27:49 2011
New Revision: 136825

URL: http://llvm.org/viewvc/llvm-project?rev=136825&view=rev
Log:
Add Clang so people know we are using Clang.

Modified:
    www/trunk/demo/index.cgi

Modified: www/trunk/demo/index.cgi
URL: http://llvm.org/viewvc/llvm-project/www/trunk/demo/index.cgi?rev=136825&r1=136824&r2=136825&view=diff
==============================================================================
--- www/trunk/demo/index.cgi (original)
+++ www/trunk/demo/index.cgi Wed Aug  3 17:27:49 2011
@@ -103,7 +103,7 @@
 sub mailto {
     my ( $recipient, $body ) = @_;
     my $msg =
-      new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
+      new Mail::Send( Subject => "LLVM/Clang Demo Page Run", To => $recipient );
     my $fh = $msg->open();
     print $fh $body;
     $fh->close();
@@ -116,7 +116,7 @@
 <html>
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-  <title>Try out LLVM in your browser!</title>
+  <title>Try out LLVM and Clang in your browser!</title>
   <style>
     \@import url("syntax.css");
     \@import url("http://llvm.org/llvm.css");
@@ -125,7 +125,7 @@
 <body leftmargin="10" marginwidth="10">
 
 <div class="www_sectiontitle">
-  Try out LLVM 2.9 in your browser!
+  Try out LLVM and Clang 2.9 in your browser!
 </div>
 
 <table border=0><tr><td>
@@ -148,7 +148,7 @@
 
 print <<END;
 Paste a C/C++ program in the text box or
-upload one from your computer, and you can see LLVM compile it!!
+upload one from your computer, and you can see LLVM and Clang compile it!!
 </td></tr></table><p>
 END
 





More information about the llvm-commits mailing list