about summary refs log tree commit diff
path: root/tests/codegen
diff options
context:
space:
mode:
authorOli Scherer <github333195615777966@oli-obk.de>2025-02-05 16:21:54 +0000
committerOli Scherer <github333195615777966@oli-obk.de>2025-03-06 10:50:23 +0000
commita2c1211b6de0c1a93c3ff1f97c49acc237f620a6 (patch)
treeb874786b63e39044bed6facda1438123c3d10733 /tests/codegen
parente8f7a382be12a812b7d73f58967f740a0cf9d9af (diff)
downloadrust-a2c1211b6de0c1a93c3ff1f97c49acc237f620a6.tar.gz
rust-a2c1211b6de0c1a93c3ff1f97c49acc237f620a6.zip
Hide the end of ranges in pretty printing if it's also the maximum of the type
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>();
 }