blob: 136b210b88665490b13f3d27904c13f954feb2a7 [file] [log] [blame]
Bill Wendling50cac242020-02-24 18:32:50 -08001// RUN: %clang_cc1 -std=c++11 -Wuninitialized -verify %s
Bill Wendling50cac242020-02-24 18:32:50 -08002
Bill Wendling72aa6192020-03-10 13:47:30 -07003// test1: Expect no diagnostics
Bill Wendling50cac242020-02-24 18:32:50 -08004int test1(int x) {
5 int y;
Bill Wendling6d0d1a62020-02-25 12:31:20 -08006 asm goto("nop" : "=r"(y) : "r"(x) : : err);
Bill Wendling50cac242020-02-24 18:32:50 -08007 return y;
8 err:
9 return -1;
10}
Bill Wendling72aa6192020-03-10 13:47:30 -070011
12int test2(int x) {
13 int y; // expected-warning {{variable 'y' is used uninitialized whenever its declaration is reached}} \
14 // expected-note {{initialize the variable}}
15 if (x < 42)
16 asm volatile goto("testl %0, %0; testl %1, %2; jne %l3" : "+S"(x), "+D"(y) : "r"(x) :: indirect_1, indirect_2);
17 else
18 asm volatile goto("testl %0, %1; testl %2, %3; jne %l5" : "+S"(x), "+D"(y) : "r"(x), "r"(y) :: indirect_1, indirect_2);
19 return x + y;
20indirect_1:
21 return -42;
22indirect_2:
23 return y; // expected-note {{uninitialized use occurs here}}
24}
25
26int test3(int x) {
27 int y; // expected-warning {{variable 'y' is used uninitialized whenever its declaration is reached}} \
28 // expected-note {{initialize the variable}}
29 asm goto("xorl %1, %0; jmp %l2" : "=&r"(y) : "r"(x) : : fail);
30normal:
31 y += x;
32 return y;
33 if (x) {
34fail:
35 return y; // expected-note {{uninitialized use occurs here}}
36 }
37 return 0;
38}
39
40int test4(int x) {
41 int y; // expected-warning {{variable 'y' is used uninitialized whenever its declaration is reached}} \
42 // expected-note {{initialize the variable}}
43 goto forward;
44backward:
45 return y; // expected-note {{uninitialized use occurs here}}
46forward:
47 asm goto("# %0 %1 %2" : "=r"(y) : "r"(x) : : backward);
48 return y;
49}
50
51// test5: Expect no diagnostics
52int test5(int x) {
53 int y;
54 asm volatile goto("testl %0, %0; testl %1, %2; jne %l3" : "+S"(x), "+D"(y) : "r"(x) :: indirect, fallthrough);
55fallthrough:
56 return y;
57indirect:
58 return -2;
59}