blob: ce2ca81d944f4f413e3d0448e1c1eaac72864570 [file] [log] [blame]
Bill Wendling50cac242020-02-24 18:32:50 -08001// RUN: %clang_cc1 -std=c++11 -Wuninitialized -verify %s
2// expected-no-diagnostics
3
4int test1(int x) {
5 int y;
6 asm goto("# %0 %1 %2" : "=r"(y) : "r"(x) : : err);
7 return y;
8 err:
9 return -1;
10}