#include <assert.h>
#include <libunwind.h>
#include <stdint.h>
#include <stdio.h>
#include <unwind.h>
void f() {
printf("123\n");
void *pc = __builtin_return_address(0);
void *fpc = (void *)&f;
void *fpc1 = (void *)((uintptr_t)fpc + 1);
struct dwarf_eh_bases bases;
const void *fde_pc = _Unwind_Find_FDE(pc, &bases);
const void *fde_fpc = _Unwind_Find_FDE(fpc, &bases);
const void *fde_fpc1 = _Unwind_Find_FDE(fpc1, &bases);
printf("fde_pc = %p\n", fde_pc);
printf("fde_fpc = %p\n", fde_fpc);
printf("fde_fpc1 = %p\n", fde_fpc1);
fflush(stdout);
assert(fde_pc != NULL);
assert(fde_fpc != NULL);
assert(fde_fpc1 != NULL);
assert(fde_fpc == fde_fpc1);
}
int main(int, char **) {
f();
return 0;
}