search for: output_mystr2

Displaying 2 results from an estimated 2 matches for "output_mystr2".

Did you mean: output_mystr
2015 Aug 14
2
[LLVM RFC] Add llvm.typeid.for intrinsic
...) int x; int y; int z; OUTPUT_STR_END(mystr); OUTPUT_STR(mystr2) int x; int y; OUTPUT_STR_END(mystr2); --------------- RESULT ------------- int func(void) { int x = 123; struct mystr myvar; struct mystr2 myvar2; output_mystr(&myvar); output_mystr2(&myvar2); output_mystr(&myvar); return 0; } int func2(void) { int x = 123; struct mystr myvar; struct mystr2 myvar2; output_mystr2(&myvar2); output_mystr(&myvar); output_mystr2(&myvar2); return 0; } .text .globl func...
2015 Aug 12
3
llvm bpf debug info. Re: [RFC PATCH v4 3/3] bpf: Introduce function for outputing data to perf event
On 2015/8/12 12:57, Alexei Starovoitov wrote: > On Wed, Aug 12, 2015 at 10:34:43AM +0800, Wangnan (F) via llvm-dev wrote: >> Think about a program like this: >> >> struct strA { int a; } >> struct strB { int b; } >> int func() { >> struct strA a; >> struct strB b; >> >> a.a = 1; >> b.b = 2; >>