Unreviewed, speculative fix build failure on 32bit
https://bugs.webkit.org/show_bug.cgi?id=202569

* llint/LowLevelInterpreter32_64.asm:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@250982 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index 39e2436..93beb41 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,10 @@
+2019-10-10  Yusuke Suzuki  <ysuzuki@apple.com>
+
+        Unreviewed, speculative fix build failure on 32bit
+        https://bugs.webkit.org/show_bug.cgi?id=202569
+
+        * llint/LowLevelInterpreter32_64.asm:
+
 2019-10-09  Saam Barati  <sbarati@apple.com>
 
         Unreviewed. Try to fix build for Windows C_LOOP
diff --git a/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm b/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm
index ab504a14e..30435c4 100644
--- a/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm
+++ b/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm
@@ -322,13 +322,13 @@
 # a0, a2, t3, t4
 macro makeJavaScriptCall(entry, protoCallFrame, temp1, temp2)
     addp CallerFrameAndPCSize, sp
-    checkStackPointerAlignment(temp, 0xbad0dc02)
+    checkStackPointerAlignment(temp1, 0xbad0dc02)
     if C_LOOP or C_LOOP_WIN
         cloopCallJSFunction entry
     else
         call entry
     end
-    checkStackPointerAlignment(temp, 0xbad0dc03)
+    checkStackPointerAlignment(temp1, 0xbad0dc03)
     subp CallerFrameAndPCSize, sp
 end