aboutsummaryrefslogtreecommitdiffstats
path: root/utils/profile.pl
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-01-14 16:32:39 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-01-14 16:32:39 +0000
commitbd02b0a91573ba1a3742e3e3077d72321800d945 (patch)
tree10bd58da4606188569829894305048f459dfde81 /utils/profile.pl
parent8f1d6402ba73b96993ffd1eb9434b28c828d8856 (diff)
downloadexternal_llvm-bd02b0a91573ba1a3742e3e3077d72321800d945.zip
external_llvm-bd02b0a91573ba1a3742e3e3077d72321800d945.tar.gz
external_llvm-bd02b0a91573ba1a3742e3e3077d72321800d945.tar.bz2
Fix the path from ../lib/Debug to ../Debug/lib per changes to Makefiles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/profile.pl')
-rwxr-xr-xutils/profile.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/profile.pl b/utils/profile.pl
index 20810fa..dfa6bab 100755
--- a/utils/profile.pl
+++ b/utils/profile.pl
@@ -66,7 +66,7 @@ my $LLIPath = `which lli`;
$LLIPath = `dirname $LLIPath`;
chomp $LLIPath;
-my $LibProfPath = $LLIPath . "/../../lib/Debug/libprofile_rt.so";
+my $LibProfPath = $LLIPath . "/../../Debug/lib/libprofile_rt.so";
system "opt -q -f $ProfilePass $BytecodeFile -o $BytecodeFile.inst";
system "lli -fake-argv0 '$BytecodeFile' -load $LibProfPath " .