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

Unified Diff: gcc/gcc/testsuite/gcc.target/i386/ssse3-check.h

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/i386/ssetype-5.c ('k') | gcc/gcc/testsuite/gcc.target/i386/unordcmp-1.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.target/i386/ssse3-check.h
diff --git a/gcc/gcc/testsuite/gcc.target/i386/ssse3-check.h b/gcc/gcc/testsuite/gcc.target/i386/ssse3-check.h
index 78df15db7d74600deb42303746b9d0c725dc4097..3ca79333c7f84ec2255e63c14d4127d705f9f85e 100644
--- a/gcc/gcc/testsuite/gcc.target/i386/ssse3-check.h
+++ b/gcc/gcc/testsuite/gcc.target/i386/ssse3-check.h
@@ -5,6 +5,13 @@
static void ssse3_test (void);
+static void
+__attribute__ ((noinline))
+do_test (void)
+{
+ ssse3_test ();
+}
+
int
main ()
{
@@ -15,7 +22,7 @@ main ()
/* Run SSSE3 test only if host has SSSE3 support. */
if (ecx & bit_SSSE3)
- ssse3_test ();
+ do_test ();
return 0;
}
« no previous file with comments | « gcc/gcc/testsuite/gcc.target/i386/ssetype-5.c ('k') | gcc/gcc/testsuite/gcc.target/i386/unordcmp-1.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698