From 771a1472de9a9180cccf69b80bb5d02e01f2f6e9 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Thu, 5 Aug 2010 18:09:23 -0700 Subject: [PATCH] Fix Windows bustage for bug 584275. r=me. --HG-- extra : convert_revision : 50ab6cea085bd699f13ebac102756531e8c0640f --- js/src/nanojit/LIR.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/nanojit/LIR.cpp b/js/src/nanojit/LIR.cpp index 93f84e5bead..f84addd0f17 100644 --- a/js/src/nanojit/LIR.cpp +++ b/js/src/nanojit/LIR.cpp @@ -2485,7 +2485,7 @@ namespace nanojit AccSet a = storesSinceLastLoad & ((1 << EMB_NUM_USED_ACCS) - 1); while (a) { int acc = msbSet(a); - clearL(acc); + clearL((CseAcc)acc); a &= ~(1 << acc); }