Home
last modified time | relevance | path

Searched refs:allocaPtr (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/
H A Dcxx-uninitialized-object-ptr-ref.cpp71 void *allocaPtr; member
77 UntypedAllocaTest() : allocaPtr(__builtin_alloca(sizeof(int))) { in UntypedAllocaTest()
87 int *allocaPtr; // expected-note{{uninitialized pointee 'this->allocaPtr'}} member
91 : allocaPtr(static_cast<int *>(__builtin_alloca(sizeof(int)))) {} in TypedAllocaTest1()
102 int *allocaPtr; member
109 : allocaPtr(static_cast<int *>(__builtin_alloca(sizeof(int)))) { in TypedAllocaTest2()
110 *allocaPtr = 55555; in TypedAllocaTest2()