From 7b5758d95055f20e0489bbae7eda4a642a7172f1 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 12 Oct 2022 04:39:54 +0300 Subject: [PATCH] Fixed "unknown pseudo-op: `.loop'" --- Architecture/amd64/SystemCalls.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Architecture/amd64/SystemCalls.cpp b/Architecture/amd64/SystemCalls.cpp index 35e79b6..943c04d 100644 --- a/Architecture/amd64/SystemCalls.cpp +++ b/Architecture/amd64/SystemCalls.cpp @@ -8,8 +8,6 @@ using namespace CPU::x64; extern "C" __attribute__((naked, used, no_stack_protector)) void SystemCallHandlerStub() { - asmv(".loop\n" - "jmp .loop\n"); } extern "C" uint64_t SystemCallsHandler(SyscallsRegs *regs);