Skip to content

Commit e658123

Browse files
Avoid referencing LLVM specifically
Co-authored-by: Josh Stone <[email protected]>
1 parent 066490a commit e658123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/vec/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ impl<T, A: Allocator> Vec<T, A> {
19911991
#[stable(feature = "rust1", since = "1.0.0")]
19921992
#[rustc_confusables("push_back", "put", "append")]
19931993
pub fn push(&mut self, value: T) {
1994-
// Inform LLVM that the length does not change across grow_one().
1994+
// Inform codegen that the length does not change across grow_one().
19951995
let len = self.len;
19961996
// This will panic or abort if we would allocate > isize::MAX bytes
19971997
// or if the length increment would overflow for zero-sized types.

0 commit comments

Comments
 (0)