aboutsummaryrefslogtreecommitdiff
path: root/lib/builtins/i386/chkstk.S
diff options
context:
space:
mode:
Diffstat (limited to 'lib/builtins/i386/chkstk.S')
-rw-r--r--lib/builtins/i386/chkstk.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/builtins/i386/chkstk.S b/lib/builtins/i386/chkstk.S
index 3733d722ef19..b59974868f21 100644
--- a/lib/builtins/i386/chkstk.S
+++ b/lib/builtins/i386/chkstk.S
@@ -19,13 +19,13 @@ DEFINE_COMPILERRT_FUNCTION(__chkstk_ms)
jb 1f
2:
sub $0x1000,%ecx
- orl $0,(%ecx)
+ test %ecx,(%ecx)
sub $0x1000,%eax
cmp $0x1000,%eax
ja 2b
1:
sub %eax,%ecx
- orl $0,(%ecx)
+ test %ecx,(%ecx)
pop %eax
pop %ecx
ret