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 target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr24414.c
blob
bd12f0c849207fa7c22c00d30eb9c17a30d30420
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
int
test
;
4
5
int
6
main
()
7
{
8
int
x
=
test
;
9
asm
(
"movl $1,test"
);
10
if
(
x
+
test
!=
1
)
11
__builtin_trap
();
12
return
0
;
13
}