From f713a13a21f9f1bf8b66bf33ebe364df877ce80f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 5 May 2017 00:21:09 +0200 Subject: [PATCH] Remove dead code which is supposed to retrieve SP, but not sure if it actually does. --- right/src/wormhole.c | 1 - 1 file changed, 1 deletion(-) diff --git a/right/src/wormhole.c b/right/src/wormhole.c index 9f68ee5..a9cf272 100644 --- a/right/src/wormhole.c +++ b/right/src/wormhole.c @@ -6,7 +6,6 @@ void* getSP(void) { void *sp; __asm__ __volatile__ ("mov %0, sp" : "=r"(sp)); -// __asm__ __volatile__ ("mrs %0, msp" : "=r"(sp)); return sp; }