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

Unified Diff: gcc/gcc/testsuite/gcc.target/i386/sse5-pcmov.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
Index: gcc/gcc/testsuite/gcc.target/i386/sse5-pcmov.c
diff --git a/gcc/gcc/testsuite/gcc.target/i386/sse5-pcmov.c b/gcc/gcc/testsuite/gcc.target/i386/sse5-pcmov.c
deleted file mode 100644
index f83b06b3392d6bb4c0c4500118d1dd48920d1515..0000000000000000000000000000000000000000
--- a/gcc/gcc/testsuite/gcc.target/i386/sse5-pcmov.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Test that the compiler properly optimizes conditional floating point moves
- into the pcmov instruction on SSE5 systems. */
-
-/* { dg-do compile } */
-/* { dg-require-effective-target lp64 } */
-/* { dg-options "-O2 -msse5" } */
-
-extern void exit (int);
-
-double dbl_test (double a, double b, double c, double d)
-{
- return (a > b) ? c : d;
-}
-
-double dbl_a = 1, dbl_b = 2, dbl_c = 3, dbl_d = 4, dbl_e;
-
-int main()
-{
- dbl_e = dbl_test (dbl_a, dbl_b, dbl_c, dbl_d);
- exit (0);
-}
-
-/* { dg-final { scan-assembler "pcmov" } } */
« no previous file with comments | « gcc/gcc/testsuite/gcc.target/i386/sse5-nmaccXX.c ('k') | gcc/gcc/testsuite/gcc.target/i386/sse5-rotate2-vector.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698