In my objdump -t
output, I see the following two lines:
00000000000004d2 l F .text.unlikely 00000000000000ec function-signature-goes-here [clone .cold.427]
and
00000000000018e0 g F .text 0000000000000690 function-signature-goes-here
I know l
means local and g
means global. I also know that .text
is a section, or a type of section, in an object file, containing compiled program instructions. But what is .text.unlikely
? Assuming it's a different section (or type-of-section) from .text
- what's the difference?