repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add AMD SSE5 support; Add iterator over function arguments; Add stdarg_p, prototype_p...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pentium4-not-mull.c
blob
be48185a86c7335408ceb0086744bfcd5b713bf2
1
/* { dg-do compile } */
2
/* { dg-require-effective-target ilp32 } */
3
/* { dg-options "-O2 -march=pentium4" } */
4
/* { dg-final { scan-assembler-not "imull" } } */
5
6
/* Should be done not using imull. */
7
int
t
(
int
x
)
8
{
9
return
x
*
29
;
10
}