[Bug testsuite/6904] buildok/syscall.stp and buildok/aux_syscalls.stp started failing on ia64 and s390x
mhiramat at redhat dot com
sourceware-bugzilla@sourceware.org
Thu Sep 18 18:43:00 GMT 2008
------- Additional Comments From mhiramat at redhat dot com 2008-09-18 18:42 -------
This is caused by including headers directly in embedded-c function, like
function ... %{
#include <header.h>
...
%}
if header.h including a definition of inline function,
the compiler can't compile this code.
above code pattern should be;
%{
#include <header>
%}
function ... %{
...
%}
--
http://sourceware.org/bugzilla/show_bug.cgi?id=6904
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the Systemtap
mailing list