summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.cpp
blob: 61d31492940dbcdf9e9ee3faa19ecb97971b755b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void crash() {
  volatile int *a = (int *)(nullptr);
  *a = 1;
}

extern "C" void _start();
void InstallBreakpad();

void _start() {
  InstallBreakpad();
  crash();
}
OpenPOWER on IntegriCloud