brintos

brintos / llvm-project-archived public Read only

0
0
Text · 163 B · 564f520 Raw
7 lines · c
1// RUN: not %clang_cc1 -S %s -verify -o -2 3void foo(void) {4    extern long bar[];5    asm ("" : "=r"(bar)); // expected-error{{output size should not be zero}}6}7