Displaying 1 result from an estimated 1 matches for "longlongalign".
2016 Jan 14
3
Aligning Long Long Vairables
Hi,
I'm trying to align long long variable on a 4 byte boundary. I tried
to change to clang frontend as follow:
LongLongAlign = 32 ; LongLongWidth = 64;
The asm output is still 8 bytes, when I declare a long long global array:
.align 8
How can I change the alignment from 8 byte to 4 byte for long long
variables? Do I need to write an ASMprinter class or change something
in my backend?
Thank you.
--
Best Regards,
Kum...