projects
/
platform
/
upstream
/
qtdeclarative.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf23818
)
More 64-bit fixes
author
Simon Hausmann
<simon.hausmann@digia.com>
Wed, 10 Oct 2012 09:42:38 +0000
(11:42 +0200)
committer
Simon Hausmann
<simon.hausmann@digia.com>
Wed, 10 Oct 2012 09:42:38 +0000
(11:42 +0200)
qv4isel_masm_p.h
patch
|
blob
|
history
diff --git
a/qv4isel_masm_p.h
b/qv4isel_masm_p.h
index
4510249
..
833ceb1
100644
(file)
--- a/
qv4isel_masm_p.h
+++ b/
qv4isel_masm_p.h
@@
-172,7
+172,7
@@
private:
Pointer addr = loadTempAddress(Gpr0, temp);
push(addr);
} else {
- xor
32
(Gpr0, Gpr0);
+ xor
Ptr
(Gpr0, Gpr0);
push(Gpr0);
}
}
@@
-292,7
+292,7
@@
private:
Pointer addr = loadTempAddress(dest, temp);
loadArgument(addr, dest);
} else {
- xor
32
(dest, dest);
+ xor
Ptr
(dest, dest);
}
}
@@
-308,6
+308,7
@@
private:
void loadArgument(TrustedImm32 imm32, RegisterID dest)
{
+ xorPtr(dest, dest);
move(imm32, dest);
}