Skip to content

Commit 3f66928

Browse files
committed
lowercase level Virtual Machine
1 parent 8b60fe9 commit 3f66928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ end = ptr.offset(len)
442442
```
443443

444444
However because `offset` is marked as a GEP inbounds instruction, this will tell
445-
llVM that ptr is allocated and won't alias other allocated memory. This is fine
445+
LLVM that ptr is allocated and won't alias other allocated memory. This is fine
446446
for zero-sized types, as they can't alias anything. However if we're using
447447
heap::EMPTY as a sentinel for a non-allocation for a *non-zero-sized* type,
448448
this can cause undefined behaviour. Alas, we must therefore special case either

0 commit comments

Comments
 (0)