1/* 2 * Copyright (c) 2023, Google, Inc. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* 8 * LLVM LLD fills empty spaces (created using ALIGN() or moving the location 9 * counter) in executable segments with TrapInstr pattern, e.g. for ARM the 10 * TrapInstr pattern is 0xd4d4d4d4. GNU LD fills empty spaces with 0x00 11 * pattern. 12 * 13 * We may want to have some section (e.g. rom_start) filled with 0x00, 14 * e.g. because MCU can interpret the pattern as a configuration data. 15 */ 16FILL(0x00); 17