mirror of
https://github.com/intel/llvm.git
synced 2026-01-24 08:30:34 +08:00
Update this to use a "valid" alignment.
llvm-svn: 108985
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
|
||||
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
|
||||
|
||||
extern void bar(int[]);
|
||||
|
||||
void foo(int a)
|
||||
{
|
||||
int var[a] __attribute__((__aligned__(32)));
|
||||
int var[a] __attribute__((__aligned__(16)));
|
||||
bar(var);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user