Skip to content

Commit

Permalink
Fix spelling error: strictess -> strictest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arch D. Robison committed Apr 29, 2016
1 parent 1388b2a commit 1f55382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cgutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ static Value *emit_bounds_check(const jl_cgval_t &ainfo, jl_value_t *ty, Value *
// It is currently unused, but might be used in the future for a more precise answer.
static unsigned julia_alignment(Value* /*ptr*/, jl_value_t *jltype, unsigned alignment) {
if (!alignment && ((jl_datatype_t*)jltype)->alignment > MAX_ALIGN) {
// Type's natural alignment exceeds strictess alignment promised in heap, so return the heap alignment.
// Type's natural alignment exceeds strictest alignment promised in heap, so return the heap alignment.
return MAX_ALIGN;
}
return alignment;
Expand Down

0 comments on commit 1f55382

Please sign in to comment.