1RUN: grep '^ADDR:' %s | sed -s 's/ADDR: //' \ 2RUN: | llvm-symbolizer --inlining --relative-address -obj="%p/Inputs/coff-exports.exe" \ 3RUN: | FileCheck %s 4 5This test relies on UnDecorateSymbolName, which is Windows-only. 6REQUIRES: system-windows 7 8ADDR: 0x500A 9ADDR: 0x5038 10ADDR: 0x504B 11 12We get the expected stack trace, except 'foo' appears for the 'bar' frame 13because 'bar' isn't in the export table. 14 15CHECK: foo(void) 16CHECK: ??:0:0 17CHECK: foo(void) 18CHECK: ??:0:0 19CHECK: main 20CHECK: ??:0:0 21