platform_system_core/debuggerd/vfp-crasher.c
Ben Cheng bdcff7d66e Dump VFP registers and status word when native app crashes.
Bug: 2226399
Caveat: d0/d1 appear to be clobbered by ptrace. It will be tracked by a new bug.
2009-12-17 12:53:06 -08:00

7 lines
66 B
C

int main()
{
extern void crash(void);
crash();
return 0;
}