about summary refs log tree commit diff
path: root/tests/codegen/pie-relocation-model.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/pie-relocation-model.rs')
-rw-r--r--tests/codegen/pie-relocation-model.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codegen/pie-relocation-model.rs b/tests/codegen/pie-relocation-model.rs
index ec44edc0667..a59216c3eee 100644
--- a/tests/codegen/pie-relocation-model.rs
+++ b/tests/codegen/pie-relocation-model.rs
@@ -5,7 +5,7 @@
 
 // With PIE we know local functions cannot be interpositioned, we can mark them
 // as dso_local.
-// CHECK: define dso_local i8 @call_foreign_fn()
+// CHECK: define dso_local noundef i8 @call_foreign_fn()
 #[no_mangle]
 pub fn call_foreign_fn() -> u8 {
     unsafe {
@@ -15,7 +15,7 @@ pub fn call_foreign_fn() -> u8 {
 
 // External functions are still marked as non-dso_local, since we don't know if the symbol
 // is defined in the binary or in the shared library.
-// CHECK: declare zeroext i8 @foreign_fn()
+// CHECK: declare noundef zeroext i8 @foreign_fn()
 extern "C" {fn foreign_fn() -> u8;}
 
 // CHECK: !{i32 {{[78]}}, !"PIC Level", i32 2}