mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
Update this to use a "valid" alignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7d7d15a159
commit
302313fc09
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user