diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-13 16:34:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-13 16:34:24 +0000 |
commit | e08fe8d7e52b96824ac77719f0a6ab364242b1e6 (patch) | |
tree | 3d107831b7726f5ad7d5d5d95b76425527e2c761 /utils/profile.pl | |
parent | b89dd23b43489964e257f3c60bdfe52400fd6130 (diff) |
apparently one of the makefile changes changed libprofile.so to profile.so
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/profile.pl')
-rwxr-xr-x | utils/profile.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/profile.pl b/utils/profile.pl index dfa6bab12e..ad0be073c8 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 . "/../../Debug/lib/libprofile_rt.so"; +my $LibProfPath = $LLIPath . "/../../Debug/lib/profile_rt.so"; system "opt -q -f $ProfilePass $BytecodeFile -o $BytecodeFile.inst"; system "lli -fake-argv0 '$BytecodeFile' -load $LibProfPath " . |