From da57ced76dbb48dd91a3b9221a00e8afc079ddc9 Mon Sep 17 00:00:00 2001 From: Jie Fu Date: Tue, 19 Sep 2023 15:46:08 +0800 Subject: [PATCH] [examples] Remove unused variable 'BB' in BrainF.cpp (NFC) /Users/jiefu/llvm-project/llvm/examples/BrainF/BrainF.cpp:92:15: error: unused variable 'BB' [-Werror,-Wunused-variable] BasicBlock* BB = builder->GetInsertBlock(); ^ 1 error generated. --- llvm/examples/BrainF/BrainF.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/examples/BrainF/BrainF.cpp b/llvm/examples/BrainF/BrainF.cpp index 7ea136a9bc29..8f09d1d016ea 100644 --- a/llvm/examples/BrainF/BrainF.cpp +++ b/llvm/examples/BrainF/BrainF.cpp @@ -89,7 +89,6 @@ void BrainF::header(LLVMContext& C) { //%arr = malloc i8, i32 %d ConstantInt *val_mem = ConstantInt::get(C, APInt(32, memtotal)); - BasicBlock* BB = builder->GetInsertBlock(); Type* IntPtrTy = IntegerType::getInt32Ty(C); Type* Int8Ty = IntegerType::getInt8Ty(C); Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty);