Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-04 15:21:13 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-04 15:21:13 +0400
commit3fe117bd3dd1cf37ded1a08eab472e71c6f60713 (patch)
tree22eba893fd046d2c2ee1d061366cf6f9fe54e454 /intern/cycles/util/util_system.cpp
parentec2c6038ee19d3b3a9b477b8ff68d0f86ef7a6ea (diff)
Fix build error on non-x86 architectures as pointed out by Jochen Schmitt.
Diffstat (limited to 'intern/cycles/util/util_system.cpp')
-rw-r--r--intern/cycles/util/util_system.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/intern/cycles/util/util_system.cpp b/intern/cycles/util/util_system.cpp
index 4fda090e09e..c3ecc303a34 100644
--- a/intern/cycles/util/util_system.cpp
+++ b/intern/cycles/util/util_system.cpp
@@ -199,7 +199,12 @@ bool system_cpu_support_sse3()
#else
-bool system_cpu_support_optimized()
+bool system_cpu_support_sse2()
+{
+ return false;
+}
+
+bool system_cpu_support_sse3()
{
return false;
}