diff options
| author | bors <bors@rust-lang.org> | 2023-03-25 19:55:10 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-03-25 19:55:10 +0000 |
| commit | 0c61c7a978fe9f7b77a1d667c77d2202dadd1c10 (patch) | |
| tree | 7dea040ed128faf54d092df5b3a9a2727a484275 /tests/codegen/array-map.rs | |
| parent | 2d429f3064cb67710fe64dee293329089871d92b (diff) | |
| parent | 58ac25b453793662f92784dc94143ab19f1fd700 (diff) | |
| download | rust-0c61c7a978fe9f7b77a1d667c77d2202dadd1c10.tar.gz rust-0c61c7a978fe9f7b77a1d667c77d2202dadd1c10.zip | |
Auto merge of #109474 - nikic:llvm-16-again, r=cuviper
Upgrade to LLVM 16, again Relative to the previous attempt in https://github.com/rust-lang/rust/pull/107224: * Update to GCC 8.5 on dist-x86_64-linux, to avoid std::optional ABI-incompatibility between libstdc++ 7 and 8. * Cherry-pick https://github.com/llvm/llvm-project/commit/96df79af029b85616ab90e73143e0e8ae89c7b46. * Cherry-pick https://github.com/llvm/llvm-project/commit/6fc670e5e370e90759b5adecd9980b63609dc2f8. r? `@cuviper`
Diffstat (limited to 'tests/codegen/array-map.rs')
| -rw-r--r-- | tests/codegen/array-map.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/codegen/array-map.rs b/tests/codegen/array-map.rs index 9298e89e397..7b8ab2c79a7 100644 --- a/tests/codegen/array-map.rs +++ b/tests/codegen/array-map.rs @@ -38,10 +38,10 @@ pub fn short_integer_zip_map(x: [u32; 8], y: [u32; 8]) -> [u32; 8] { // // CHECK-LABEL: @long_integer_map #[no_mangle] -pub fn long_integer_map(x: [u32; 64]) -> [u32; 64] { +pub fn long_integer_map(x: [u32; 512]) -> [u32; 512] { // CHECK: start: - // CHECK-NEXT: alloca [64 x i32] - // CHECK-NEXT: alloca %"core::mem::manually_drop::ManuallyDrop<[u32; 64]>" + // CHECK-NEXT: alloca [512 x i32] + // CHECK-NEXT: alloca %"core::mem::manually_drop::ManuallyDrop<[u32; 512]>" // CHECK-NOT: alloca // CHECK: mul <{{[0-9]+}} x i32> // CHECK: add <{{[0-9]+}} x i32> |
