Skip to content

Commit b4973e9

Browse files
committed
Internally limit alignment to 2^30
1 parent da81a33 commit b4973e9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/librustc/ty/layout.rs

+2
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,8 @@ impl Align {
314314
}
315315
if bytes != 1 {
316316
Err(format!("`{}` is not a power of 2", align))
317+
} else if pow > 30 {
318+
Err(format!("`{}` is too large", align))
317319
} else {
318320
Ok(pow)
319321
}

0 commit comments

Comments
 (0)