search for: 563c69b1

Displaying 1 result from an estimated 1 matches for "563c69b1".

Did you mean: 5163c6b1
2012 Aug 14
3
[LLVMdev] global alignment
Hello all, I found that the alignment for stack value has no limitation, but for global value, it has a limitation. Here is an example: #include <stdio.h> #include <stdlib.h> char x[4000] __attribute__((aligned(4096))); int main (int argc, char ** argv) { char y[4000] __attribute__((aligned(4096))); printf("x is %p\n", x); printf("y is %p\n", y); return