[llvm] f0e8d00 - [X86] widen_load-3.ll - add missing nounwind attributes

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri May 31 06:03:02 PDT 2024


Author: Simon Pilgrim
Date: 2024-05-31T13:59:49+01:00
New Revision: f0e8d003e5157c128f8f2375eac487b38e445648

URL: https://github.com/llvm/llvm-project/commit/f0e8d003e5157c128f8f2375eac487b38e445648
DIFF: https://github.com/llvm/llvm-project/commit/f0e8d003e5157c128f8f2375eac487b38e445648.diff

LOG: [X86] widen_load-3.ll - add missing nounwind attributes

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/widen_load-3.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/widen_load-3.ll b/llvm/test/CodeGen/X86/widen_load-3.ll
index 301944324b956..b3738f5366d3d 100644
--- a/llvm/test/CodeGen/X86/widen_load-3.ll
+++ b/llvm/test/CodeGen/X86/widen_load-3.ll
@@ -8,7 +8,7 @@
 
 ; PR27708
 
-define <7 x i64> @load7_aligned(ptr %x) {
+define <7 x i64> @load7_aligned(ptr %x) nounwind {
 ; X86-SSE-LABEL: load7_aligned:
 ; X86-SSE:       # %bb.0:
 ; X86-SSE-NEXT:    movl {{[0-9]+}}(%esp), %eax
@@ -67,7 +67,7 @@ define <7 x i64> @load7_aligned(ptr %x) {
   ret <7 x i64> %x1
 }
 
-define <7 x i64> @load7_unaligned(ptr %x) {
+define <7 x i64> @load7_unaligned(ptr %x) nounwind {
 ; X86-SSE-LABEL: load7_unaligned:
 ; X86-SSE:       # %bb.0:
 ; X86-SSE-NEXT:    movl {{[0-9]+}}(%esp), %eax


        


More information about the llvm-commits mailing list