[Bf-blender-cvs] [a6374a28962] functions: missing renamings

Jacques Lucke noreply at git.blender.org
Mon Mar 4 16:53:42 CET 2019


Commit: a6374a28962ec544a599978fb7be866e8e456461
Author: Jacques Lucke
Date:   Mon Mar 4 14:19:34 2019 +0100
Branches: functions
https://developer.blender.org/rBa6374a28962ec544a599978fb7be866e8e456461

missing renamings

===================================================================

M	source/blender/functions/backends/llvm/compiled_body.cpp
M	source/blender/functions/backends/llvm/compiled_body.hpp
M	source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
M	source/blender/functions/backends/llvm/ir_to_tuple_call.hpp
M	source/blender/functions/c_wrapper.cpp

===================================================================

diff --git a/source/blender/functions/backends/llvm/compiled_body.cpp b/source/blender/functions/backends/llvm/compiled_body.cpp
index b2b384c72bb..512c948f24d 100644
--- a/source/blender/functions/backends/llvm/compiled_body.cpp
+++ b/source/blender/functions/backends/llvm/compiled_body.cpp
@@ -64,7 +64,7 @@ namespace FN {
 		return new LLVMCompiledBody(std::move(compiled));
 	}
 
-	void derive_CompiledLLVMBody_from_LLVMBuildIRBody(
+	void derive_LLVMCompiledBody_from_LLVMBuildIRBody(
 		SharedFunction &fn,
 		llvm::LLVMContext &context)
 	{
diff --git a/source/blender/functions/backends/llvm/compiled_body.hpp b/source/blender/functions/backends/llvm/compiled_body.hpp
index 3b660eb27d0..c1e7b049dc7 100644
--- a/source/blender/functions/backends/llvm/compiled_body.hpp
+++ b/source/blender/functions/backends/llvm/compiled_body.hpp
@@ -31,7 +31,7 @@ namespace FN {
 		}
 	};
 
-	void derive_CompiledLLVMBody_from_LLVMBuildIRBody(
+	void derive_LLVMCompiledBody_from_LLVMBuildIRBody(
 		SharedFunction &fn,
 		llvm::LLVMContext &context);
 
diff --git a/source/blender/functions/backends/llvm/ir_to_tuple_call.cpp b/source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
index 5071d1a5507..edb1f0da973 100644
--- a/source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
+++ b/source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
@@ -172,7 +172,7 @@ namespace FN {
 		fn->add_body(build_from_ir_generator(fn, context));
 	}
 
-	void derive_TupleCallBody_from_CompiledLLVMBody(
+	void derive_TupleCallBody_from_LLVMCompiledBody(
 		SharedFunction &fn,
 		llvm::LLVMContext &context)
 	{
diff --git a/source/blender/functions/backends/llvm/ir_to_tuple_call.hpp b/source/blender/functions/backends/llvm/ir_to_tuple_call.hpp
index 6efd3e335bb..dc69e5ef411 100644
--- a/source/blender/functions/backends/llvm/ir_to_tuple_call.hpp
+++ b/source/blender/functions/backends/llvm/ir_to_tuple_call.hpp
@@ -12,7 +12,7 @@ namespace FN {
 		SharedFunction &fn,
 		llvm::LLVMContext &context);
 
-	void derive_TupleCallBody_from_CompiledLLVMBody(
+	void derive_TupleCallBody_from_LLVMCompiledBody(
 		SharedFunction &fn,
 		llvm::LLVMContext &context);
 
diff --git a/source/blender/functions/c_wrapper.cpp b/source/blender/functions/c_wrapper.cpp
index 5b33c7b6473..84af9f34cbc 100644
--- a/source/blender/functions/c_wrapper.cpp
+++ b/source/blender/functions/c_wrapper.cpp
@@ -26,7 +26,7 @@ static void playground()
 	SharedFunction fn = Functions::separate_vector();
 
 	llvm::LLVMContext *context = new llvm::LLVMContext();
-	derive_CompiledLLVMBody_from_LLVMBuildIRBody(fn, *context);
+	derive_LLVMCompiledBody_from_LLVMBuildIRBody(fn, *context);
 
 	Tuple fn_in(fn->signature().input_types());
 	Tuple fn_out(fn->signature().output_types());



More information about the Bf-blender-cvs mailing list