]> git.lizzy.rs Git - rust.git/blobdiff - tests/codegen/var-names.rs
Auto merge of #107778 - weihanglo:update-cargo, r=weihanglo
[rust.git] / tests / codegen / var-names.rs
index 8f1b038708e667b9cfccd9b8ec4b7124aa314c3e..d4715efad73c0fe0855a3a22314dd662d735861d 100644 (file)
@@ -2,7 +2,7 @@
 
 #![crate_type = "lib"]
 
-// CHECK-LABEL: define{{.*}}i32 @test(i32 %a, i32 %b)
+// CHECK-LABEL: define{{.*}}i32 @test(i32 noundef %a, i32 noundef %b)
 #[no_mangle]
 pub fn test(a: u32, b: u32) -> u32 {
     let c = a + b;