Testcase for PR4332.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73353 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2009-06-14 22:22:42 +00:00
parent 90f95f88c6
commit ec08da01fc

View File

@ -0,0 +1,8 @@
// RUN: %llvmgcc %s -S
// PR4332
static int highly_aligned __attribute__((aligned(4096)));
int f() {
return highly_aligned;
}