Eric Christopher | 302313f | 2010-07-21 04:51:24 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16" |
Eric Christopher | de8d405 | 2010-07-20 20:32:47 +0000 | [diff] [blame] | 2 | |
3 | extern void bar(int[]); | ||||
4 | |||||
5 | void foo(int a) | ||||
6 | { | ||||
Eric Christopher | 302313f | 2010-07-21 04:51:24 +0000 | [diff] [blame] | 7 | int var[a] __attribute__((__aligned__(16))); |
Eric Christopher | de8d405 | 2010-07-20 20:32:47 +0000 | [diff] [blame] | 8 | bar(var); |
9 | return; | ||||
10 | } |