From: Serguei Makarov Date: Thu, 7 Jun 2012 19:09:36 +0000 (-0400) Subject: Further fix to registers.stp to avoid testsuite complaints. X-Git-Tag: release-1.8~44 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=5628061bad15195d4cafcdc27a9133c9131468dc;p=systemtap.git Further fix to registers.stp to avoid testsuite complaints. --- diff --git a/tapset/registers.stp b/tapset/registers.stp index a9b764108..1de711463 100644 --- a/tapset/registers.stp +++ b/tapset/registers.stp @@ -9,7 +9,7 @@ * the values of a probed function's arguments. (The latter can be * called when you have hit a probe point at the entry to a function, * and are useful when the code you are probing was built without debugging - * informaiton.) + * information.) * * Function arguments are referred to by number, starting at 1. * On 32-bit architectures @@ -226,3 +226,7 @@ function fastcall() { } function regparm(n:long) { } %) + +/* There needs to be *something* in the tapset in order for it to pass + the smoketest when running make installcheck. */ +function registers_tapset_stub() { printf("Hello, World!") }