소스 검색

Remove superfluous parentheses from link.x

Fixes #102
Jan Niehusmann 2 년 전
부모
커밋
b89b4e4920
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      riscv-rt/link.x

+ 2 - 2
riscv-rt/link.x

@@ -55,8 +55,8 @@ SECTIONS
     KEEP(*(.init));
     KEEP(*(.init.rust));
     . = ALIGN(4);
-    (*(.trap));
-    (*(.trap.rust));
+    *(.trap);
+    *(.trap.rust);
 
     *(.text .text.*);
   } > REGION_TEXT