Drop many cases of .previous directive use
Since most assembly files are no longer concatenated together but built separately, section changes with .previous at the end of the files have become spurious. TEST=BUILD_TIMELESS Change-Id: I2970eed2b114a53475ba385eec4e97bb7ae7095c Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47963 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
70d608fc70
commit
254142a11d
|
@ -19,4 +19,3 @@ part:
|
|||
.globl __id_end
|
||||
|
||||
__id_end:
|
||||
.previous
|
||||
|
|
|
@ -19,4 +19,3 @@ part:
|
|||
.globl __id_end
|
||||
|
||||
__id_end:
|
||||
.previous
|
||||
|
|
|
@ -31,4 +31,3 @@ part:
|
|||
.globl __id_end
|
||||
|
||||
__id_end:
|
||||
.previous
|
||||
|
|
|
@ -235,10 +235,4 @@ setCodeSelectorLongJump:
|
|||
# restore rsp, it might not have been 16-byte aligned on entry
|
||||
mov %rdx, %rsp
|
||||
ret
|
||||
|
||||
.previous
|
||||
.code64
|
||||
#else
|
||||
.previous
|
||||
.code32
|
||||
#endif
|
||||
|
|
|
@ -25,4 +25,3 @@ part:
|
|||
.globl __id_end
|
||||
|
||||
__id_end:
|
||||
.previous
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
fit_pointer:
|
||||
.long fit_table
|
||||
.long 0
|
||||
.previous
|
||||
|
||||
.section .text
|
||||
.align 16
|
||||
|
@ -29,4 +28,3 @@ fit_table:
|
|||
.byte 0x7d
|
||||
.fill CONFIG_CPU_INTEL_NUM_FIT_ENTRIES*16
|
||||
fit_table_end:
|
||||
.previous
|
||||
|
|
Loading…
Reference in New Issue