This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug testsuite/6904] buildok/syscall.stp and buildok/aux_syscalls.stp started failing on ia64 and s390x


------- 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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]