blob: b5a7f5e733ff428f3318baad4a7e62b7e53eb36d [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o /dev/null
2// PR4332
3
4static int highly_aligned __attribute__((aligned(4096)));
5
6int f() {
7 return highly_aligned;
8}