From 63b8fac8520d5547c20a961b5fe32721c4199116 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Wed, 5 Sep 2012 10:13:45 -0700 Subject: [PATCH] Improve naming of temporary variable in IR --- ctx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctx.cpp b/ctx.cpp index 8ca1e4a0..82d5a64d 100644 --- a/ctx.cpp +++ b/ctx.cpp @@ -1404,7 +1404,7 @@ FunctionEmitContext::I1VecToBoolVec(llvm::Value *b) { return ret; } else - return SExtInst(b, LLVMTypes::BoolVectorType, "val_to_boolvec32"); + return SExtInst(b, LLVMTypes::BoolVectorType, LLVMGetName(b, "_to_i32")); }