[llvm-commits] CVS: llvm/utils/profile.pl

Reid Spencer reid at x10sys.com
Fri Jan 14 08:32:50 PST 2005



Changes in directory llvm/utils:

profile.pl updated: 1.6 -> 1.7
---
Log message:

Fix the path from ../lib/Debug to ../Debug/lib per changes to Makefiles.


---
Diffs of the changes:  (+1 -1)

Index: llvm/utils/profile.pl
diff -u llvm/utils/profile.pl:1.6 llvm/utils/profile.pl:1.7
--- llvm/utils/profile.pl:1.6	Mon Mar  8 14:04:46 2004
+++ llvm/utils/profile.pl	Fri Jan 14 10:32:39 2005
@@ -66,7 +66,7 @@
 $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 " .






More information about the llvm-commits mailing list