fork(1) download
  1. #include <iostream>
  2.  
  3. typedef double foo __attribute__ ((aligned (64)));
  4.  
  5. int main(int argc, char *argv[]) {
  6. foo arr[2];
  7. return 0;
  8. }
Compilation error #stdin compilation error #stdout 0s 15240KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main(int, char**)’:
prog.cpp:6:14: error: alignment of array elements is greater than element size
     foo arr[2];
              ^
stdout
Standard output is empty