aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/ref.c
diff options
context:
space:
mode:
authorDavid Lovemore2012-05-03 16:43:57 +0100
committerDavid Lovemore2012-05-03 16:43:57 +0100
commit8f87261a136c91d4cd00d5ccc08b86ac864037ec (patch)
treed296ba55ec6de62431ddb3f31368e1a7a300d125 /mps/code/ref.c
parent52db7a8d59afb7e43ab675de91a079245c3d104b (diff)
parent9bf482ea08a4800df14251b30422a8cb9faf85b9 (diff)
downloademacs-8f87261a136c91d4cd00d5ccc08b86ac864037ec.tar.gz
emacs-8f87261a136c91d4cd00d5ccc08b86ac864037ec.zip
Merged from branch/2012-03-27/longest to pick up extra vararg fixes and casts on shift operands.
Copied from Perforce Change: 178096 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/ref.c')
-rw-r--r--mps/code/ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/ref.c b/mps/code/ref.c
index a52fd60064b..fd11743cb1e 100644
--- a/mps/code/ref.c
+++ b/mps/code/ref.c
@@ -27,7 +27,7 @@ Bool RankCheck(Rank rank)
27 27
28Bool RankSetCheck(RankSet rankSet) 28Bool RankSetCheck(RankSet rankSet)
29{ 29{
30 CHECKL(rankSet < (1uL << RankLIMIT)); 30 CHECKL(rankSet < ((ULongest)1 << RankLIMIT));
31 UNUSED(rankSet); /* <code/mpm.c#check.unused> */ 31 UNUSED(rankSet); /* <code/mpm.c#check.unused> */
32 return TRUE; 32 return TRUE;
33} 33}