From 1bc5aee63eb72b341f506ad058502cd0361f0d10 Mon Sep 17 00:00:00 2001 From: Ben Cheng Date: Tue, 25 Mar 2014 22:37:19 -0700 Subject: Initial checkin of GCC 4.9.0 from trunk (r208799). Change-Id: I48a3c08bb98542aa215912a75f03c0890e497dba --- .../testsuite/gcc.misc-tests/i386-pf-athlon-1.c | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 gcc-4.9/gcc/testsuite/gcc.misc-tests/i386-pf-athlon-1.c (limited to 'gcc-4.9/gcc/testsuite/gcc.misc-tests/i386-pf-athlon-1.c') diff --git a/gcc-4.9/gcc/testsuite/gcc.misc-tests/i386-pf-athlon-1.c b/gcc-4.9/gcc/testsuite/gcc.misc-tests/i386-pf-athlon-1.c new file mode 100644 index 000000000..d793437f1 --- /dev/null +++ b/gcc-4.9/gcc/testsuite/gcc.misc-tests/i386-pf-athlon-1.c @@ -0,0 +1,31 @@ +/* Test that the correct data prefetch instructions are generated for i386 + variants that use 3DNow! prefetchw or SSE prefetch instructions with + locality hints. */ + +/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } } */ + +extern void exit (int); + +char *msg = "howdy there"; + +void foo (char *p) +{ + __builtin_prefetch (p, 0, 0); + __builtin_prefetch (p, 0, 1); + __builtin_prefetch (p, 0, 2); + __builtin_prefetch (p, 0, 3); + __builtin_prefetch (p, 1, 0); + __builtin_prefetch (p, 1, 1); + __builtin_prefetch (p, 1, 2); + __builtin_prefetch (p, 1, 3); +} + +int main () +{ + foo (msg); + exit (0); +} + +/* { dg-final { scan-assembler "prefetchw" } } */ +/* { dg-final { scan-assembler "prefetchnta" } } */ +/* { dg-final { scan-assembler "prefetcht" } } */ -- cgit v1.2.3