Treat copysignl like the other copysign functions.
[oota-llvm.git] / test / FrontendC / 2009-06-14-HighlyAligned.c
1 // RUN: %llvmgcc %s -S
2 // PR4332
3
4 static int highly_aligned __attribute__((aligned(4096)));
5
6 int f() {
7         return highly_aligned;
8 }