From 5f0d90db7e8764ad57e03dc0e97f44c24a40c9e5 Mon Sep 17 00:00:00 2001 From: Michael Melesse Date: Fri, 28 Oct 2022 19:05:42 +0000 Subject: [PATCH] tab prints --- include/print_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 include/print_helper.h diff --git a/include/print_helper.h b/include/print_helper.h old mode 100644 new mode 100755 index 918ad8c5e..00b4fde7b --- a/include/print_helper.h +++ b/include/print_helper.h @@ -108,9 +108,9 @@ inline std::string get_llvm_value_as_str(llvm::Value *llvm_value) inline void print_llvm_value(llvm::Value *llvm_value, std::string name = "") { if (llvm_value) - std::cout << name << ": " << get_llvm_value_as_str(llvm_value) << std::endl; + std::cout << "\t" << name << ": " << get_llvm_value_as_str(llvm_value) << std::endl; else - std::cout << name << ": " << "is nullptr" << std::endl; + std::cout << "\t" << name << ": " << "is nullptr" << std::endl; } inline void print_llvm_type(llvm::Type *llvm_type, std::string name = "")