xref: /llvm-project/clang/test/CodeGen/2009-06-14-HighlyAligned.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 %s -emit-llvm -o /dev/null
2 // PR4332
3 
4 static int highly_aligned __attribute__((aligned(4096)));
5 
f(void)6 int f(void) {
7 	return highly_aligned;
8 }
9