This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: The ".value" directive


Amittai Aviram <amittai.aviram@yale.edu> writes:

> What does the ".value" directive mean and what is it for?  The assembly code I'm looking at is for x86_64, if that makes a difference.  Thanks!


It puts a two byte value into the output section.  E.g.,

short x = 1;

might generate

x:
	.value 1

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]