mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
For PR1338: Rename test dirs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
17
test/FrontendC/2007-08-01-LoadStoreAlign.c
Normal file
17
test/FrontendC/2007-08-01-LoadStoreAlign.c
Normal file
@@ -0,0 +1,17 @@
|
||||
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {align 1} | count 2
|
||||
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | llvm-as | llc
|
||||
|
||||
struct p {
|
||||
char a;
|
||||
int b;
|
||||
} __attribute__ ((packed));
|
||||
|
||||
struct p t = { 1, 10 };
|
||||
struct p u;
|
||||
|
||||
int main () {
|
||||
int tmp = t.b;
|
||||
u.b = tmp;
|
||||
return tmp;
|
||||
|
||||
}
|
Reference in New Issue
Block a user