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 __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
gdc.dg
/
asm5.d
blob
b525a2131ce100e57881a9ad35509386c8e1814a
1
// https://issues.dlang.org/show_bug.cgi?id=20593
2
// { dg-do compile }
3
// { dg-options "-Wall -Wdeprecated -Werror" }
4
module
asm5
;
5
6
void
test
(
int
a
)
7
{
8
asm
9
{
10
"cpuid"
: :
"a"
a
;
// { dg-error "'a' must be surrounded by parentheses" }
11
}
12
}