1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -fblocks -verify %s
5 return &x
; // expected-warning{{Address of stack memory associated with local variable 'x' returned}} expected-warning{{address of stack memory associated with local variable 'x' returned}}
9 return &y
; // expected-warning{{Address of stack memory associated with local variable 'y' returned}} expected-warning{{address of stack memory associated with parameter 'y' returned}}
12 int* f3(int x
, int *y
) {
18 return y
; // expected-warning{{Address of stack memory associated with local variable 'w' returned to caller}}
21 void* compound_literal(int x
, int y
) {
23 return &(unsigned short){((unsigned short)0x22EF)}; // expected-warning{{Address of stack memory}}
26 struct s
{ int z
; double y
; int w
; };
29 return &((struct s
){ 2, 0.4, 5 * 8 }); // expected-warning{{Address of stack memory}}
32 void* p
= &((struct s
){ 42, 0.4, x
? 42 : 0 });
33 return p
; // expected-warning{{Address of stack memory}}
36 void* alloca_test(void) {
37 void* p
= __builtin_alloca(10);
38 return p
; // expected-warning{{Address of stack memory}}
41 int array_test(int x
[2]) {
42 return x
[0]; // no-warning
50 int struct_test(struct baz byVal
, int flag
) {
52 return byVal
.x
; // no-warning
54 return byVal
.y
[0]; // no-warning
58 typedef int (^ComparatorBlock
)(int a
, int b
);
59 ComparatorBlock
test_return_block(void) {
60 // This block is a global since it has no captures.
61 ComparatorBlock b
= ^int(int a
, int b
){ return a
> b
; };
62 return b
; // no-warning
65 ComparatorBlock
test_return_block_with_capture(int x
) {
66 // This block is stack allocated because it has captures.
67 ComparatorBlock b
= ^int(int a
, int b
){ return a
> b
+ x
; };
68 return b
; // expected-warning{{Address of stack-allocated block}}
71 ComparatorBlock
test_return_block_neg_aux(void);
72 ComparatorBlock
test_return_block_neg(void) {
73 ComparatorBlock b
= test_return_block_neg_aux();
74 return b
; // no-warning
77 // <rdar://problem/7523821>
78 int *rdar_7523821_f2(void) {
80 return a
; // expected-warning 2 {{ddress of stack memory associated with local variable 'a' returned}}
83 // Handle blocks that have no captures or are otherwise declared 'static'.
84 // <rdar://problem/10348049>
85 typedef int (^RDar10348049
)(int value
);
86 RDar10348049
test_rdar10348049(void) {
87 static RDar10348049 b
= ^int(int x
) {
90 return b
; // no-warning
93 void testRegister(register const char *reg
) {
94 if (reg
) (void)reg
[0];
96 void callTestRegister(void) {
98 testRegister(buf
); // no-warning