]> Git Repo - qemu.git/blobdiff - tcg/optimize.c
Merge remote-tracking branch 'remotes/kraxel/tags/pull-roms-20141217-1' into staging
[qemu.git] / tcg / optimize.c
index 16cebbe16d8da1078c91a5fa28d88eb545597bca..34ae3c285752401b7de8633c6c2ba1fa400d3015 100644 (file)
@@ -911,12 +911,11 @@ static TCGArg *tcg_constant_folding(TCGContext *s, uint16_t *tcg_opc_ptr,
             break;
         }
 
-        /* 32-bit ops (non 64-bit ops and non load/store ops) generate
-           32-bit results.  For the result is zero test below, we can
-           ignore high bits, but for further optimizations we need to
-           record that the high bits contain garbage.  */
+        /* 32-bit ops generate 32-bit results.  For the result is zero test
+           below, we can ignore high bits, but for further optimizations we
+           need to record that the high bits contain garbage.  */
         partmask = mask;
-        if (!(def->flags & (TCG_OPF_CALL_CLOBBER | TCG_OPF_64BIT))) {
+        if (!(def->flags & TCG_OPF_64BIT)) {
             mask |= ~(tcg_target_ulong)0xffffffffu;
             partmask &= 0xffffffffu;
             affected &= 0xffffffffu;
This page took 0.023606 seconds and 4 git commands to generate.