mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
Removed debug break support for PowerPC Macs
This commit is contained in:
parent
242022460d
commit
5c8ea03cc8
@ -21,15 +21,7 @@ namespace Catch{
|
|||||||
|
|
||||||
#ifdef CATCH_PLATFORM_MAC
|
#ifdef CATCH_PLATFORM_MAC
|
||||||
|
|
||||||
// The following code snippet based on:
|
#define CATCH_TRAP() __asm__("int $3\n" : : )
|
||||||
// http://cocoawithlove.com/2008/03/break-into-debugger.html
|
|
||||||
#if defined(__ppc64__) || defined(__ppc__)
|
|
||||||
#define CATCH_TRAP() \
|
|
||||||
__asm__("li r0, 20\nsc\nnop\nli r0, 37\nli r4, 2\nsc\nnop\n" \
|
|
||||||
: : : "memory","r0","r3","r4" )
|
|
||||||
#else
|
|
||||||
#define CATCH_TRAP() __asm__("int $3\n" : : )
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif defined(CATCH_PLATFORM_LINUX)
|
#elif defined(CATCH_PLATFORM_LINUX)
|
||||||
// If we can use inline assembler, do it because this allows us to break
|
// If we can use inline assembler, do it because this allows us to break
|
||||||
|
Loading…
Reference in New Issue
Block a user