From 9aa84608251a8db4e0ecbe44651247f5b9e5afd9 Mon Sep 17 00:00:00 2001 From: gil Date: Thu, 16 May 2024 00:50:35 -0500 Subject: [PATCH] Cleaning up a comment --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f224d77..4a68e4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,6 @@ unsafe extern "C" fn _enter() -> ! { ".option push", // pushes the current option stack ".option norelax", // disable relaxation so we can properly set `gp` // this instruction compiles to: - // 1: // auipc gp, %pcrel_hi(_global_pointer) // addi gp, gp, %pcrel_lo(1b) // if relaxation were on, this would simply be `mv gp, gp` or `addi gp, gp, 0`