Commit: 5a81ea8dcd4fdbe8a0b2591e3e20a04de8499228
Author: Jacques Lucke
Date:   Mon Mar 4 14:16:15 2019 +0100
Branches: functions
https://developer.blender.org/rB5a81ea8dcd4fdbe8a0b2591e3e20a04de8499228

cleanup file naming

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

M       source/blender/functions/CMakeLists.txt
M       source/blender/functions/FN_llvm.hpp
R099    source/blender/functions/backends/llvm/from_tuple_call.cpp      
source/blender/functions/backends/llvm/ir_for_tuple_call.cpp
R100    source/blender/functions/backends/llvm/from_tuple_call.hpp      
source/blender/functions/backends/llvm/ir_for_tuple_call.hpp
R100    source/blender/functions/backends/llvm/to_tuple_call.cpp        
source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
R100    source/blender/functions/backends/llvm/to_tuple_call.hpp        
source/blender/functions/backends/llvm/ir_to_tuple_call.hpp

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

diff --git a/source/blender/functions/CMakeLists.txt 
b/source/blender/functions/CMakeLists.txt
index 0ac2a584a4b..eba45cc97d8 100644
--- a/source/blender/functions/CMakeLists.txt
+++ b/source/blender/functions/CMakeLists.txt
@@ -56,10 +56,10 @@ set(SRC
        backends/llvm/llvm_types.cpp
        backends/llvm/build_ir_body.hpp
        backends/llvm/build_ir_body.cpp
-       backends/llvm/to_tuple_call.hpp
-       backends/llvm/to_tuple_call.cpp
-       backends/llvm/from_tuple_call.hpp
-       backends/llvm/from_tuple_call.cpp
+       backends/llvm/ir_to_tuple_call.hpp
+       backends/llvm/ir_to_tuple_call.cpp
+       backends/llvm/ir_for_tuple_call.hpp
+       backends/llvm/ir_for_tuple_call.cpp
        backends/llvm/compiled_body.hpp
        backends/llvm/compiled_body.cpp
        backends/llvm/compile.hpp
diff --git a/source/blender/functions/FN_llvm.hpp 
b/source/blender/functions/FN_llvm.hpp
index 8027d1b808d..34f40fc5916 100644
--- a/source/blender/functions/FN_llvm.hpp
+++ b/source/blender/functions/FN_llvm.hpp
@@ -3,6 +3,6 @@
 #include "backends/llvm/initialize.hpp"
 #include "backends/llvm/llvm_types.hpp"
 #include "backends/llvm/build_ir_body.hpp"
-#include "backends/llvm/to_tuple_call.hpp"
-#include "backends/llvm/from_tuple_call.hpp"
+#include "backends/llvm/ir_to_tuple_call.hpp"
+#include "backends/llvm/ir_for_tuple_call.hpp"
 #include "backends/llvm/compiled_body.hpp"
\ No newline at end of file
diff --git a/source/blender/functions/backends/llvm/from_tuple_call.cpp 
b/source/blender/functions/backends/llvm/ir_for_tuple_call.cpp
similarity index 99%
rename from source/blender/functions/backends/llvm/from_tuple_call.cpp
rename to source/blender/functions/backends/llvm/ir_for_tuple_call.cpp
index 095af521f77..7db6941a379 100644
--- a/source/blender/functions/backends/llvm/from_tuple_call.cpp
+++ b/source/blender/functions/backends/llvm/ir_for_tuple_call.cpp
@@ -1,4 +1,4 @@
-#include "from_tuple_call.hpp"
+#include "ir_for_tuple_call.hpp"
 #include "llvm_types.hpp"
 #include "FN_tuple_call.hpp"
 #include "ir_utils.hpp"
diff --git a/source/blender/functions/backends/llvm/from_tuple_call.hpp 
b/source/blender/functions/backends/llvm/ir_for_tuple_call.hpp
similarity index 100%
rename from source/blender/functions/backends/llvm/from_tuple_call.hpp
rename to source/blender/functions/backends/llvm/ir_for_tuple_call.hpp
diff --git a/source/blender/functions/backends/llvm/to_tuple_call.cpp 
b/source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
similarity index 100%
rename from source/blender/functions/backends/llvm/to_tuple_call.cpp
rename to source/blender/functions/backends/llvm/ir_to_tuple_call.cpp
diff --git a/source/blender/functions/backends/llvm/to_tuple_call.hpp 
b/source/blender/functions/backends/llvm/ir_to_tuple_call.hpp
similarity index 100%
rename from source/blender/functions/backends/llvm/to_tuple_call.hpp
rename to source/blender/functions/backends/llvm/ir_to_tuple_call.hpp

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to