diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-02-14 18:24:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-14 18:24:40 +0100 |
| commit | a1ba8611907f847d8bc43565566ee739dd9d5202 (patch) | |
| tree | afb21c982c168c10c8dde37373686cc82e63a469 /tests/codegen | |
| parent | 9bb6e60d1f1360234aae90c97964c0fa5524f141 (diff) | |
| parent | ffdbd58d85ef1f172e4b78e00655b36131ed1d4f (diff) | |
Rollup merge of #107573 - cuviper:drop-llvm-13, r=nagisa
Update the minimum external LLVM to 14 With this change, we'll have stable support for LLVM 14 through 16 (pending release). For reference, the previous increase to LLVM 13 was #100460.
Diffstat (limited to 'tests/codegen')
| -rw-r--r-- | tests/codegen/consts.rs | 1 | ||||
| -rw-r--r-- | tests/codegen/merge-functions.rs | 1 | ||||
| -rw-r--r-- | tests/codegen/sse42-implies-crc32.rs | 1 | ||||
| -rw-r--r-- | tests/codegen/uninit-consts.rs | 1 | ||||
| -rw-r--r-- | tests/codegen/vec-in-place.rs | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/tests/codegen/consts.rs b/tests/codegen/consts.rs index 260d9de8670..d0418d11142 100644 --- a/tests/codegen/consts.rs +++ b/tests/codegen/consts.rs @@ -1,5 +1,4 @@ // compile-flags: -C no-prepopulate-passes -// min-llvm-version: 14.0 #![crate_type = "lib"] diff --git a/tests/codegen/merge-functions.rs b/tests/codegen/merge-functions.rs index 8e8fe5c964d..d6caeeee896 100644 --- a/tests/codegen/merge-functions.rs +++ b/tests/codegen/merge-functions.rs @@ -1,4 +1,3 @@ -// min-llvm-version: 14.0 // revisions: O Os //[Os] compile-flags: -Copt-level=s //[O] compile-flags: -O diff --git a/tests/codegen/sse42-implies-crc32.rs b/tests/codegen/sse42-implies-crc32.rs index 47b1a899340..56079d32a8d 100644 --- a/tests/codegen/sse42-implies-crc32.rs +++ b/tests/codegen/sse42-implies-crc32.rs @@ -1,5 +1,4 @@ // only-x86_64 -// min-llvm-version: 14.0 // compile-flags: -Copt-level=3 #![crate_type = "lib"] diff --git a/tests/codegen/uninit-consts.rs b/tests/codegen/uninit-consts.rs index 98a6761f8ab..54e9a9e9bb8 100644 --- a/tests/codegen/uninit-consts.rs +++ b/tests/codegen/uninit-consts.rs @@ -1,5 +1,4 @@ // compile-flags: -C no-prepopulate-passes -// min-llvm-version: 14.0 // Check that we use undef (and not zero) for uninitialized bytes in constants. diff --git a/tests/codegen/vec-in-place.rs b/tests/codegen/vec-in-place.rs index 5df3669056d..9992604221b 100644 --- a/tests/codegen/vec-in-place.rs +++ b/tests/codegen/vec-in-place.rs @@ -1,4 +1,3 @@ -// min-llvm-version: 14.0 // ignore-debug: the debug assertions get in the way // compile-flags: -O -Z merge-functions=disabled #![crate_type = "lib"] |
