constbrbug.js 489 B

1234567891011121314
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. var m = (function() {
  6. 'use asm';
  7. function f()
  8. {
  9. return (2 >= -1 ? 0 : 1)|0;
  10. }
  11. return f;
  12. })()
  13. print(m());