diff options
Diffstat (limited to 'test/FrontendC/2007-08-01-LoadStoreAlign.c')
-rw-r--r-- | test/FrontendC/2007-08-01-LoadStoreAlign.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/FrontendC/2007-08-01-LoadStoreAlign.c b/test/FrontendC/2007-08-01-LoadStoreAlign.c deleted file mode 100644 index 5365c06..0000000 --- a/test/FrontendC/2007-08-01-LoadStoreAlign.c +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %llvmgcc -O3 -S -o - %s | grep {align 1} | count 2 -// RUN: %llvmgcc -O3 -S -o - %s | 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; - -} |