diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-01-14 16:32:39 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-01-14 16:32:39 +0000 |
| commit | 9dcfffd730f6a4fd66e526a43ba4975461093760 (patch) | |
| tree | f5154d87c53b25441255ee4225a1486c2f13e4cf /llvm/utils | |
| parent | 0ad02bdd3d680917fe0f02f9146122146c1d9c74 (diff) | |
| download | bcm5719-llvm-9dcfffd730f6a4fd66e526a43ba4975461093760.tar.gz bcm5719-llvm-9dcfffd730f6a4fd66e526a43ba4975461093760.zip | |
Fix the path from ../lib/Debug to ../Debug/lib per changes to Makefiles.
llvm-svn: 19550
Diffstat (limited to 'llvm/utils')
| -rwxr-xr-x | llvm/utils/profile.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/profile.pl b/llvm/utils/profile.pl index 20810fab9a0..dfa6bab12e4 100755 --- a/llvm/utils/profile.pl +++ b/llvm/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 " . |

