ramosian-glider / memory-sanitizer

Automatically exported from code.google.com/p/memory-sanitizer
0 stars 0 forks source link

Remove __msan_allocated_memory from stack trace #65

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Don't want to see this first frame:
 Uninitialized value was created by a heap allocation
    #0 0x7fcf3e07cd49 in __msan_allocated_memory
    #1 ...

Need to do smth like this in __msan_allocated_memory:
  GET_CALLER_PC_BP_SP;
  (void)sp;
  GET_STORE_STACK_TRACE_PC_BP(pc, bp);

Original issue reported on code.google.com by euge...@google.com on 24 Sep 2014 at 9:17

GoogleCodeExporter commented 8 years ago
Adding Project:MemorySanitizer as part of GitHub migration.

Original comment by gli...@google.com on 30 Jul 2015 at 9:22