Skip to content

Commit

Permalink
Fix elif
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsaezm committed Feb 16, 2023
1 parent 51e50d0 commit f5ae61f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _fixtures/cgostacktest/hello.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
#define BREAKPOINT asm("int3;")
#elif __i386__
#define BREAKPOINT asm("int3;")
#elif __PPC64__
#define BREAKPOINT asm("tw 31,0,0;")
#elif __aarch64__
#ifdef WIN32
#define BREAKPOINT asm("brk 0xF000;")
#else
#define BREAKPOINT asm("brk 0;")
#elif __PPC64__
#define BREAKPOINT asm("tw 31,0,0;")
#endif
#endif

Expand Down

0 comments on commit f5ae61f

Please sign in to comment.