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
[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr69454-2.c
blob
b9c20619d65092a0108a4ee6c043f35953e0cb9d
1
/* { dg-do compile { target ia32 } } */
2
/* { dg-options "-O2 -msse2 -mno-accumulate-outgoing-args -mpreferred-stack-boundary=2" } */
3
4
extern
void
fn2
();
5
long long
a
,
b
;
6
7
void
fn1
()
8
{
9
long long
c
=
a
;
10
a
=
b
^
a
;
11
fn2
();
12
a
=
c
;
13
}