mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-16 13:01:21 +08:00
stmt.c (resolve_asm_operand_names): Fix handling of %%.
* stmt.c (resolve_asm_operand_names): Fix handling of %%. From-SVN: r161091
This commit is contained in:
parent
babc472831
commit
d34b4f64c8
@ -1,3 +1,8 @@
|
||||
2010-06-21 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* stmt.c (resolve_asm_operand_names): Fix handling
|
||||
of %%.
|
||||
|
||||
2010-06-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* config/sol2.h (TARGET_OS_CPP_BUILTINS): Define
|
||||
|
@ -1319,7 +1319,7 @@ resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels)
|
||||
break;
|
||||
else
|
||||
{
|
||||
c += 1;
|
||||
c += 1 + (c[1] == '%');
|
||||
continue;
|
||||
}
|
||||
}
|
||||
@ -1341,7 +1341,7 @@ resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels)
|
||||
p += 2;
|
||||
else
|
||||
{
|
||||
p += 1;
|
||||
p += 1 + (p[1] == '%');
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user