OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:someGlobal
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Analysis/
new.cpp
8
int
someGlobal
;
10
if (
someGlobal
!= 0)
18
// Check that the new/delete did not invalidate
someGlobal
;
19
clang_analyzer_eval(
someGlobal
== 0); // expected-warning{{TRUE}}
free.c
64
static int
someGlobal
[2];
66
free(
someGlobal
); // expected-warning {{Argument to free() is the address of the global variable '
someGlobal
', which is not memory allocated by malloc()}}
Completed in 262 milliseconds