diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-07 19:26:10 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-05-07 19:26:10 -0400 |
commit | a007b4068d20af2d4488d54bf3ef2edbf47f2f06 (patch) | |
tree | ac10d2f24e5b5f09f3ae871f1cc00d26db54f805 /translate.cxx | |
parent | 9204dcfbe16061f799068eeacff5dc68ad33e523 (diff) | |
parent | da3fe5fe9641e7c4cc6ae5c4a289ddbc020aca1a (diff) | |
download | systemtap-steved-a007b4068d20af2d4488d54bf3ef2edbf47f2f06.tar.gz systemtap-steved-a007b4068d20af2d4488d54bf3ef2edbf47f2f06.tar.xz systemtap-steved-a007b4068d20af2d4488d54bf3ef2edbf47f2f06.zip |
Merge commit 'origin/dwarfless' into pr6429-comp-unwindsyms
* commit 'origin/dwarfless':
The beginnings of a no-dwarf version of syscalls.stp. Selected
Added CPU REGISTERS and NUMBERED FUNCTION ARGUMENTS sections to
Replaced [u_]arg() with [u]int_arg(), [u]long_arg(), {s|u}32_arg(),
Added support for register(), u_register(), arg(), and u_arg() functions.
* testsuite/{semok,semko}/nodwf*.stp
PR 4311 - Function boundary tracing without debuginfo: Phase I
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/translate.cxx b/translate.cxx index 61bc13b8..b1037fef 100644 --- a/translate.cxx +++ b/translate.cxx @@ -878,6 +878,7 @@ c_unparser::emit_common_header () o->newline() << "unsigned long *unwaddr;"; // unwaddr is caching unwound address in each probe handler on ia64. o->newline() << "struct kretprobe_instance *pi;"; + o->newline() << "int regparm;"; o->newline() << "va_list *mark_va_list;"; o->newline() << "void *data;"; o->newline() << "#ifdef STP_TIMING"; |