mirror of
https://github.com/github/codeql.git
synced 2026-03-30 04:08:16 +02:00
8 lines
123 B
C++
8 lines
123 B
C++
// semmle-extractor-options: --clang
|
|
|
|
int globalInt;
|
|
|
|
int *globalIntAddress() {
|
|
return __builtin_addressof(globalInt);
|
|
}
|