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
PR c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
wmul-12.c
blob
5c6b5b9882cbf8be933c3ccc692964f47d31e297
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
/* { dg-require-effective-target arm_dsp } */
4
5
long long
6
foo
(
int
*
b
,
int
*
c
)
7
{
8
long long
tmp
= (
long long
)*
b
* *
c
;
9
return
10
+
tmp
;
10
}
11
12
/* { dg-final { scan-assembler "smlal" } } */