We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8bc80c commit 9f9a4cbCopy full SHA for 9f9a4cb
deps/v8/src/ia32/full-codegen-ia32.cc
@@ -2772,8 +2772,12 @@ void FullCodeGenerator::EmitMathPow(ZoneList<Expression*>* args) {
2772
VisitForStackValue(args->at(0));
2773
VisitForStackValue(args->at(1));
2774
2775
- MathPowStub stub;
2776
- __ CallStub(&stub);
+ if (CpuFeatures::IsSupported(SSE2)) {
+ MathPowStub stub;
2777
+ __ CallStub(&stub);
2778
+ } else {
2779
+ __ CallRuntime(Runtime::kMath_pow, 2);
2780
+ }
2781
context()->Plug(eax);
2782
}
2783
deps/v8/src/version.cc
@@ -35,7 +35,7 @@
35
#define MAJOR_VERSION 3
36
#define MINOR_VERSION 1
37
#define BUILD_NUMBER 8
38
-#define PATCH_LEVEL 25
+#define PATCH_LEVEL 26
39
#define CANDIDATE_VERSION false
40
41
// Define SONAME to have the SCons build the put a specific SONAME into the
0 commit comments