Cleaning up a comment

This commit is contained in:
gil 2024-05-16 00:50:35 -05:00
parent b78f21ed21
commit 9aa8460825

View file

@ -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`