X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=utils%2Fprofile.pl;h=318011560bc8ee94961548e599ce54030c6d05c5;hb=6cd0b17ba7f7efae41966c4a36ee725523d38575;hp=f9950f97fea82179c1e22a23b820db1ef18211ac;hpb=111e8ce3a2b6279dcc348878349fd459c4ed883c;p=oota-llvm.git diff --git a/utils/profile.pl b/utils/profile.pl index f9950f97fea..318011560bc 100755 --- a/utils/profile.pl +++ b/utils/profile.pl @@ -5,7 +5,7 @@ # Synopsis: Insert instrumentation code into a program, run it with the JIT, # then print out a profile report. # -# Syntax: profile.pl [OPTIONS] bytecodefile +# Syntax: profile.pl [OPTIONS] bitcodefile # # OPTIONS may include one or more of the following: # -block - Enable basicblock profiling @@ -56,7 +56,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { $LLVMProfOpts .= " " . $_; } -die "Must specify LLVM bytecode file as first argument!" if (@ARGV == 0); +die "Must specify LLVM bitcode file as first argument!" if (@ARGV == 0); my $BytecodeFile = $ARGV[0];