[llvm-commits] CVS: llvm-www/demo/index.cgi
Reid Spencer
reid at x10sys.com
Mon Aug 14 14:10:53 PDT 2006
Changes in directory llvm-www/demo:
index.cgi updated: 1.63 -> 1.64
---
Log message:
Actually dereference a variable name in the llvm2cpp command.
---
Diffs of the changes: (+4 -3)
index.cgi | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.63 llvm-www/demo/index.cgi:1.64
--- llvm-www/demo/index.cgi:1.63 Wed Aug 9 17:47:28 2006
+++ llvm-www/demo/index.cgi Mon Aug 14 16:09:53 2006
@@ -5,13 +5,13 @@
# doing remote web JO99C compilations. (It could still be used for that
# purpose, though the two scripts have diverged somewhat.)
#
-# Last modified $Date: 2006/08/09 22:47:28 $
+# Last modified $Date: 2006/08/14 21:09:53 $
#
use strict;
use CGI;
use POSIX;
-use Mail::Send;
+#use Mail::Send;
$| = 1;
@@ -440,7 +440,8 @@
}
if ($c->param('showllvm2cpp') ) {
my $l2cppFile = getname(".l2cpp");
- try_run("llvm2cpp","llvm2cpp $bytecodeFile -o l2cppFile 2>&1",$l2cppFile);
+ try_run("llvm2cpp","llvm2cpp $bytecodeFile -o $l2cppFile 2>&1",
+ $l2cppFile);
}
addlog( $source, $pid, $UnhilightedResult );
More information about the llvm-commits
mailing list