Patrick Meredith
2004-Jun-17 23:06 UTC
[LLVMdev] small bug in print function for arguments
The print function for function arguments doesn't print the '%' in front of the argument name. So instead of say, int %i, it prints it out as int i. I know Value::getName() drops the % because it's not part of the name, but it seems like for printing an argument it should add the % back in. ~Patrick -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040617/9683aace/attachment.html>
On Thu, 17 Jun 2004, Patrick Meredith wrote:> The print function for function arguments doesn't print the '%' in front > of the argument name. So instead of say, int %i, it prints it out as > int i. I know Value::getName() drops the % because it's not part of the > name, but it seems like for printing an argument it should add the % > back in.Hrm, that's odd. Fixed: http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20040614/015273.html -Chris -- http://llvm.cs.uiuc.edu/ http://www.nondot.org/~sabre/Projects/