--- sml/trunk/src/cm/util/dyn-tstamp.sml 1999/05/28 09:43:39 301 +++ sml/trunk/src/cm/util/dyn-tstamp.sml 1999/05/29 03:19:59 302 @@ -42,7 +42,11 @@ fun noshare s = NOSHARE (StringSet.singleton s) + (* The only time we can encounter an old result of NOSHARE is + * during the same run of "make". In this case, the old value + * certainly cannot be outdated. *) fun outdated { context = SHARE c, oldresult = SHARE r } = c > r + | outdated { oldresult = NOSHARE _, ... } = false | outdated _ = true fun join (SHARE x, SHARE y) = SHARE (if x > y then x else y)
Click to toggle
does not end with </html> tag
does not end with </body> tag
The output has ended thus: false | outdated _ = true fun join (SHARE x, SHARE y) = SHARE (if x > y then x else y)