Removed debug break support for PowerPC Macs

This commit is contained in:
Phil Nash 2017-04-25 12:27:26 +01:00
parent 242022460d
commit 5c8ea03cc8
1 changed files with 1 additions and 9 deletions

View File

@ -21,15 +21,7 @@ namespace Catch{
#ifdef CATCH_PLATFORM_MAC
// The following code snippet based on:
// 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
#define CATCH_TRAP() __asm__("int $3\n" : : )
#elif defined(CATCH_PLATFORM_LINUX)
// If we can use inline assembler, do it because this allows us to break