1 | // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-output=text -verify %s |
---|---|
2 | // expected-no-diagnostics |
3 | |
4 | // Do not crash on initialization to complex numbers. |
5 | void init_complex() { |
6 | _Complex float valid1 = { 0.0f, 0.0f }; |
7 | } |
8 |
1 | // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-output=text -verify %s |
---|---|
2 | // expected-no-diagnostics |
3 | |
4 | // Do not crash on initialization to complex numbers. |
5 | void init_complex() { |
6 | _Complex float valid1 = { 0.0f, 0.0f }; |
7 | } |
8 |