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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
guality
/
pr63300-const-volatile.c
blob
b8d75ed40a84800f42fc9573eefbf5d8918b4022
1
/* PR63300 'const volatile' sometimes stripped in debug info */
2
/* { dg-do run } */
3
/* { dg-options "-g" } */
4
5
int
6
main
(
int
argc
,
char
**
argv
)
7
{
8
const
volatile
int
v
=
argc
;
9
return
v
-
argc
;
10
}
11
12
/* { dg-final { gdb-test 9 "type:v" "const volatile int" } } */