From 6a505121fc997e6f21d26f8c8656f99e58faaaab Mon Sep 17 00:00:00 2001 From: fche Date: Sat, 3 Sep 2005 16:52:41 +0000 Subject: 2005-09-03 Frank Ch. Eigler PR 1292, by popular request. * parse.cxx (parse_functiondecl): Allow optional value/param type declarations. * stap.1.in: Document this. * tapset/*.stp: Convert most functions accordingly. * testsuite/parseok/twelve.stp, semok/seven.stp, semko/twenty.stp: Test this. --- testsuite/semok/seven.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuite/semok') diff --git a/testsuite/semok/seven.stp b/testsuite/semok/seven.stp index 73264923..f0b248bd 100755 --- a/testsuite/semok/seven.stp +++ b/testsuite/semok/seven.stp @@ -2,8 +2,8 @@ global ar1, ar2 -function string (v) { num=v+0; return "stringify me" } # to become a built-in -function printk (s) { str=s.""; return 0 } # to become a built-in +function string:string (v:long) { } # to become a built-in +function printk (s:string) { return 0 } # to become a built-in function search (key) { -- cgit