about summary refs log tree commit diff
path: root/tests/codegen
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2025-03-07 05:52:22 +0000
committerGitHub <noreply@github.com>2025-03-07 05:52:22 +0000
commita3ea86e4b1e3a668f74c8fb7eaf99e97db047950 (patch)
treecea01037962191e12be544d1ae5cad9659ae9461 /tests/codegen
parent7c3979ec45b020171c5ea2a38495c8d08a8b5444 (diff)
parent245aad1b3e38c1b26170c77972fe67db55db2199 (diff)
downloadrust-a3ea86e4b1e3a668f74c8fb7eaf99e97db047950.tar.gz
rust-a3ea86e4b1e3a668f74c8fb7eaf99e97db047950.zip
Merge pull request #4222 from rust-lang/rustup-2025-03-07
Automatic Rustup
Diffstat (limited to 'tests/codegen')
-rw-r--r--tests/codegen/pattern_type_symbols.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codegen/pattern_type_symbols.rs b/tests/codegen/pattern_type_symbols.rs
index b504a3508f9..e86a9ef27de 100644
--- a/tests/codegen/pattern_type_symbols.rs
+++ b/tests/codegen/pattern_type_symbols.rs
@@ -16,7 +16,7 @@ pub fn bar() {
     // CHECK: call pattern_type_symbols::foo::<u32>
     // CHECK: call void @_RINvC[[CRATE_IDENT:[a-zA-Z0-9]{12}]]_20pattern_type_symbols3foomEB2_
     foo::<u32>();
-    // CHECK: call pattern_type_symbols::foo::<(u32, [(); 0], [(); 999999999], [(); true])>
-    // CHECK: call void @_RINvC[[CRATE_IDENT]]_20pattern_type_symbols3fooTmAum0_Aum3b9ac9ff_Aub1_EEB2_
+    // CHECK: call pattern_type_symbols::foo::<(u32, [(); 0], [(); 999999999])>
+    // CHECK: call void @_RINvC[[CRATE_IDENT]]_20pattern_type_symbols3fooTmAum0_Aum3b9ac9ff_EEB2_
     foo::<NanoU32>();
 }