blob: 3a1b6159c2e58dff2fb3a458c9e13dd25a9b9cd5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Test for correct naming of label operands in asm goto in case of presence of
input/output operands. */
/* { dg-do compile { target asm_goto_with_outputs } } */
int i, j;
int f(void) {
asm goto ("# %0 %2" : "+r" (i) ::: jmp);
i += 2;
asm goto ("# %0 %1 %l[jmp]" : "+r" (i), "+r" (j) ::: jmp);
jmp: return i;
}
|