blob: 227db74f47a07d76df221da3f1a12d06ac192b91 [file] [log] [blame]
Dan Gohman01baea32010-04-30 17:42:30 +00001// RUN: %llvmgcc %s -S -o /dev/null
Duncan Sandsec08da02009-06-14 22:22:42 +00002// PR4332
3
4static int highly_aligned __attribute__((aligned(4096)));
5
6int f() {
7 return highly_aligned;
8}