1RUN: llvm-symbolizer 0x500A 0x5038 0x504B --inlining --relative-address --obj="%p/Inputs/coff-exports.exe" \ 2RUN: | FileCheck %s 3RUN: llvm-symbolizer 0x500A 0x5038 0x504B --inlines --relative-address --obj="%p/Inputs/coff-exports.exe" \ 4RUN: | FileCheck %s 5RUN: llvm-symbolizer 0x500A 0x5038 0x504B -i --relative-address --obj="%p/Inputs/coff-exports.exe" \ 6RUN: | FileCheck %s 7 8We get the expected stack trace, except 'foo' appears for the 'bar' frame 9because 'bar' isn't in the export table. 10 11CHECK: foo(void) 12CHECK: ??:0:0 13CHECK: foo(void) 14CHECK: ??:0:0 15CHECK: main 16CHECK: ??:0:0 17