From 1c9db4fdf66fe88a731319b99942872fa567d742 Mon Sep 17 00:00:00 2001 From: askeshav Date: Fri, 28 Oct 2005 22:49:28 +0000 Subject: IA64 Runtime support patches. With this in place Systemtap should now be able to build on Ia64. Includes supports for - function probes, return probes, function parameter access and dumping stack backtrace. Added by Anil S Keshavamurthy --- translate.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'translate.cxx') diff --git a/translate.cxx b/translate.cxx index 7a37c3a1..6abecbea 100644 --- a/translate.cxx +++ b/translate.cxx @@ -1,5 +1,6 @@ // translation pass // Copyright (C) 2005 Red Hat Inc. +// Copyright (C) 2005 Intel Corporation // // This file is part of systemtap, and is free software. You can // redistribute it and/or modify it under the terms of the GNU General @@ -2626,6 +2627,7 @@ translate_pass (systemtap_session& s) s.op->newline() << "#include \"runtime.h\""; s.op->newline() << "#include \"current.c\""; s.op->newline() << "#include \"stack.c\""; + s.op->newline() << "#include \"regs.c\""; s.op->newline() << "#include "; s.op->newline() << "#include "; s.op->newline() << "#endif"; -- cgit