Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: gcc/gcc/testsuite/gcc.target/sh/sh4a-bitmovua.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gcc.target/powerpc/ppc-paired.c ('k') | gcc/gcc/testsuite/gcc.target/sparc/fexpand-2.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.target/sh/sh4a-bitmovua.c
diff --git a/gcc/gcc/testsuite/gcc.target/sh/sh4a-bitmovua.c b/gcc/gcc/testsuite/gcc.target/sh/sh4a-bitmovua.c
index b7081bf7186937629243b50c00b90398a31cf135..761c7b0b5df945451ac3199a016817ea8a3d3110 100644
--- a/gcc/gcc/testsuite/gcc.target/sh/sh4a-bitmovua.c
+++ b/gcc/gcc/testsuite/gcc.target/sh/sh4a-bitmovua.c
@@ -35,15 +35,15 @@ long long f4() {
}
/* Aligned. */
-struct u0 { unsigned long long d : 32; } y0;
+struct u0 { unsigned long long d : 32; } y_0;
unsigned long long g0() {
- return y0.d;
+ return y_0.d;
}
/* Unaligned load. */
-struct u1 { long long c : 8; unsigned long long d : 32; } y1;
+struct u1 { long long c : 8; unsigned long long d : 32; } y_1;
unsigned long long g1() {
- return y1.d;
+ return y_1.d;
}
/* Unaligned load. */
« no previous file with comments | « gcc/gcc/testsuite/gcc.target/powerpc/ppc-paired.c ('k') | gcc/gcc/testsuite/gcc.target/sparc/fexpand-2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698