https://bugs.llvm.org/show_bug.cgi?id=35056
Nico Weber <nicolaswe...@gmx.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |INVALID
Status|NEW |RESOLVED
--- Comment #2 from Nico Weber <nicolaswe...@gmx.de> ---
Yes, works like so:
C:\src\chrome\src>type foo.cc
#include <windows.h>
__declspec(naked)
bool SafeTerminateProcess(HANDLE process, UINT exit_code) {
__asm {
push ebp
mov ebp, esp
push [ebp+12]
push [ebp+8]
call TerminateProcess
test eax, eax
setne al
mov esp, ebp
pop ebp
ret
}
}
void g() {
volatile int* p = 0;
*p = 4;
}
int main() {
__try {
g();
} __except(1) {
TerminateProcess(GetCurrentProcess(), 1);
}
}
That's not it.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs