[llvm] [Tests][LoopDistribute] Fixes failing unit test (PR #80809)

Nilanjana Basu via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 6 01:14:37 PST 2024


https://github.com/nilanjana87 created https://github.com/llvm/llvm-project/pull/80809

Fixes failing unit test caused by https://github.com/llvm/llvm-project/pull/67725 because of the presence of a target-triple.

>From b403ffd41902550317db053f9d02c5bcc15bf0e2 Mon Sep 17 00:00:00 2001
From: Nilanjana Basu <n_basu at apple.com>
Date: Tue, 6 Feb 2024 01:11:31 -0800
Subject: [PATCH] [Tests][LoopDistribute] Fixes failing unit test caused by
 https://github.com/llvm/llvm-project/pull/67725

---
 llvm/test/Transforms/LoopDistribute/basic-with-memchecks.ll | 2 --
 1 file changed, 2 deletions(-)

diff --git a/llvm/test/Transforms/LoopDistribute/basic-with-memchecks.ll b/llvm/test/Transforms/LoopDistribute/basic-with-memchecks.ll
index 27ca1a7541db66..2b9f777e9f3b24 100644
--- a/llvm/test/Transforms/LoopDistribute/basic-with-memchecks.ll
+++ b/llvm/test/Transforms/LoopDistribute/basic-with-memchecks.ll
@@ -18,7 +18,6 @@
 ;   }
 
 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
-target triple = "x86_64-apple-macosx10.10.0"
 
 @B = common global ptr null, align 8
 @A = common global ptr null, align 8
@@ -78,7 +77,6 @@ entry:
 ; CHECK: for.end:
 
 
-; VECTORIZE: mul <4 x i32>
 ; VECTORIZE: mul <4 x i32>
 ; VECTORIZE-NOT: mul <4 x i32>
 



More information about the llvm-commits mailing list