blob: 4678b75b6daf93a4f19db4f79e44df5f622abe3a [file] [log] [blame]
Duncan Sands3cdf8d52009-06-14 22:22:42 +00001// RUN: %llvmgcc %s -S
2// PR4332
3
4static int highly_aligned __attribute__((aligned(4096)));
5
6int f() {
7 return highly_aligned;
8}