Lines Matching defs:Alloca
214 // %A = alloca i8, i8 1
227 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A");
228 StoreInst *S1 = B.CreateStore(ConstantInt::get(Int8, 0), Alloca);
229 StoreInst *S2 = B.CreateStore(ConstantInt::get(Int8, 1), Alloca);
230 StoreInst *S3 = B.CreateStore(ConstantInt::get(Int8, 2), Alloca);
259 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A");
260 Instruction *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca);
261 Instruction *LI = B.CreateLoad(Alloca);
289 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A");
290 StoreInst *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca);