Improve naming of temporary variable in IR

This commit is contained in:
Matt Pharr
2012-09-05 10:13:45 -07:00
parent def8d7850b
commit 63b8fac852

View File

@@ -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"));
}