Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fsharp/FSharp.Core/prim-types.fs
Original file line number Diff line number Diff line change
Expand Up @@ -961,11 +961,11 @@ namespace Microsoft.FSharp.Core
let c = int64Order lenx1 leny1
if c <> 0 then c else
let basex0 = int64 (x.GetLowerBound(0))
let basex1 = int64 (x.GetLowerBound(1))
let basey0 = int64 (y.GetLowerBound(0))
let basey1 = int64 (y.GetLowerBound(1))
let c = int64Order basex0 basey0
if c <> 0 then c else
let basex1 = int64 (x.GetLowerBound(1))
let basey1 = int64 (y.GetLowerBound(1))
let c = int64Order basex1 basey1
if c <> 0 then c else
let rec check0 i =
Expand Down