[llvm] edf2e96 - [SimplifyCFG] Minor tweaks to the added tests (NFC)
    Juneyoung Lee via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Tue Feb 23 00:32:37 PST 2021
    
    
  
Author: Juneyoung Lee
Date: 2021-02-23T17:32:28+09:00
New Revision: edf2e967422abc89895fe5745a8c5d7d32a2a5e5
URL: https://github.com/llvm/llvm-project/commit/edf2e967422abc89895fe5745a8c5d7d32a2a5e5
DIFF: https://github.com/llvm/llvm-project/commit/edf2e967422abc89895fe5745a8c5d7d32a2a5e5.diff
LOG: [SimplifyCFG] Minor tweaks to the added tests (NFC)
Added: 
    
Modified: 
    llvm/test/Transforms/SimplifyCFG/UnreachableEliminate.ll
Removed: 
    
################################################################################
diff  --git a/llvm/test/Transforms/SimplifyCFG/UnreachableEliminate.ll b/llvm/test/Transforms/SimplifyCFG/UnreachableEliminate.ll
index 7589fd551903..af8682df8afd 100644
--- a/llvm/test/Transforms/SimplifyCFG/UnreachableEliminate.ll
+++ b/llvm/test/Transforms/SimplifyCFG/UnreachableEliminate.ll
@@ -205,8 +205,8 @@ else:
 }
 
 declare i8* @fn_nonnull_noundef_arg(i8* nonnull noundef %p)
-declare i8* @fn_nonnull_deref_arg(i8* dereferenceable(4) noundef %p)
-declare i8* @fn_nonnull_deref_or_null_arg(i8* dereferenceable_or_null(4) noundef %p)
+declare i8* @fn_nonnull_deref_arg(i8* nonnull dereferenceable(4) %p)
+declare i8* @fn_nonnull_deref_or_null_arg(i8* nonnull dereferenceable_or_null(4) %p)
 declare i8* @fn_nonnull_arg(i8* nonnull %p)
 declare i8* @fn_noundef_arg(i8* noundef %p)
 
        
    
    
More information about the llvm-commits
mailing list