mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-02 00:51:56 +00:00
Test that local variables are aligned as the user requested.
llvm-svn: 42338
This commit is contained in:
parent
5cb9dbaaa1
commit
41eb9bf1f1
7
test/CFrontend/2007-09-26-Alignment.c
Normal file
7
test/CFrontend/2007-09-26-Alignment.c
Normal file
@ -0,0 +1,7 @@
|
||||
// RUN: %llvmgcc -S %s -o - | grep {align 16}
|
||||
extern p(int *);
|
||||
int q(void) {
|
||||
int x __attribute__ ((aligned (16)));
|
||||
p(&x);
|
||||
return x;
|
||||
}
|
Loading…
Reference in New Issue
Block a user