Clean up whitespace

This commit is contained in:
Scott Lahteine
2020-08-07 20:37:55 -05:00
parent 18adfe87bc
commit fd646d0d66
2 changed files with 3 additions and 18 deletions

View File

@ -102,7 +102,7 @@ SECTIONS
. = ALIGN(4);
} >FLASH
.ARM.extab : {
.ARM.extab : {
. = ALIGN(4);
*(.ARM.extab* .gnu.linkonce.armextab.*)
. = ALIGN(4);
@ -146,7 +146,7 @@ SECTIONS
_sidata = LOADADDR(.data);
/* Initialized data sections into "RAM" Ram type memory */
.data :
.data :
{
. = ALIGN(4);
_sdata = .; /* create a global symbol at data start */
@ -157,7 +157,7 @@ SECTIONS
_edata = .; /* define a global symbol at data end */
} >RAM AT> FLASH
/* Uninitialized data section into "RAM" Ram type memory */
. = ALIGN(4);
.bss :
@ -185,8 +185,6 @@ SECTIONS
. = ALIGN(8);
} >RAM
/* Remove information from the compiler libraries */
/DISCARD/ :
{
@ -197,4 +195,3 @@ SECTIONS
.ARM.attributes 0 : { *(.ARM.attributes) }
}