// Copyright 2006-2008 the V8 project authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.(function(global,utils){%CheckIsBootstrapping();functionMaxSimple(a,b){returna>b?a:b;}functionMinSimple(a,b){returna>b?b:a;}%SetForceInlineFlag(MaxSimple);%SetForceInlineFlag(MinSimple);// ----------------------------------------------------------------------------// Exportsutils.Export(function(to){to.MaxSimple=MaxSimple;to.MinSimple=MinSimple;});})