[llvm] 68069f2 - [x86] add nounwind attribute to test; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 2 13:43:37 PST 2022
Author: Sanjay Patel
Date: 2022-03-02T16:42:04-05:00
New Revision: 68069f27d9d91d481df1bcd9b82ba9e0b2b71b03
URL: https://github.com/llvm/llvm-project/commit/68069f27d9d91d481df1bcd9b82ba9e0b2b71b03
DIFF: https://github.com/llvm/llvm-project/commit/68069f27d9d91d481df1bcd9b82ba9e0b2b71b03.diff
LOG: [x86] add nounwind attribute to test; NFC
This will avoid some noise in case the register allocation changes.
Added:
Modified:
llvm/test/CodeGen/X86/legalize-shift.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/X86/legalize-shift.ll b/llvm/test/CodeGen/X86/legalize-shift.ll
index e1c1c0ba72a0c..8113311134ab3 100644
--- a/llvm/test/CodeGen/X86/legalize-shift.ll
+++ b/llvm/test/CodeGen/X86/legalize-shift.ll
@@ -2,7 +2,7 @@
; RUN: llc < %s -mtriple=i686-unknown-unknown | FileCheck %s --check-prefix=X86
; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s --check-prefix=X64
-define void @PR36250() {
+define void @PR36250() nounwind {
; X86-LABEL: PR36250:
; X86: # %bb.0:
; X86-NEXT: movl (%eax), %eax
More information about the llvm-commits
mailing list