This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug translator/10942] New: Split large varargs into separate calls


Part of the fallout from PR10750 is that we now have a hard limit on the number
of arguments that can be used in a print call.  It would be nicer if the
translator would just split that up into manageable pieces, so the internal
limit is masked from the user.  For example, if the limit were 3, then:

  println(1, 2, 3, 4, 5) ==> ( println(1, 2, 3) + println(4, 5) )
  sprint(1, 2, 3, 4, 5) ==> ( sprint(1, 2, 3) . sprint(4, 5) )

-- 
           Summary: Split large varargs into separate calls
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: translator
        AssignedTo: systemtap at sources dot redhat dot com
        ReportedBy: jistone at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=10942

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]