[llvm] 5af5ac4 - Update mentions of reduction intrinsics; NFC

Sven van Haastregt via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 5 03:50:01 PDT 2023


Author: Sven van Haastregt
Date: 2023-04-05T11:49:41+01:00
New Revision: 5af5ac4e3ed6ad187cf075501288e62a48560cbf

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

LOG: Update mentions of reduction intrinsics; NFC

The intrinsics have been out of experimental since 322d0afd875d
("[llvm][mlir] Promote the experimental reduction intrinsics to be
first class intrinsics.", 2020-10-07); update some places that still
referred to them as experimental.

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/ExpandReductions.h
    llvm/include/llvm/CodeGen/Passes.h
    llvm/lib/CodeGen/ExpandReductions.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/ExpandReductions.h b/llvm/include/llvm/CodeGen/ExpandReductions.h
index 5dbed07873c1..91c2507a9e39 100644
--- a/llvm/include/llvm/CodeGen/ExpandReductions.h
+++ b/llvm/include/llvm/CodeGen/ExpandReductions.h
@@ -1,4 +1,4 @@
-//===----- ExpandReductions.h - Expand experimental reduction intrinsics --===//
+//===- ExpandReductions.h - Expand reduction intrinsics ---------*- C++ -*-===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.

diff  --git a/llvm/include/llvm/CodeGen/Passes.h b/llvm/include/llvm/CodeGen/Passes.h
index 3ee3e505da71..69dc805fcf58 100644
--- a/llvm/include/llvm/CodeGen/Passes.h
+++ b/llvm/include/llvm/CodeGen/Passes.h
@@ -499,8 +499,7 @@ namespace llvm {
   /// printing assembly.
   ModulePass *createMachineOutlinerPass(bool RunOnAllFunctions = true);
 
-  /// This pass expands the experimental reduction intrinsics into sequences of
-  /// shuffles.
+  /// This pass expands the reduction intrinsics into sequences of shuffles.
   FunctionPass *createExpandReductionsPass();
 
   // This pass replaces intrinsics operating on vector operands with calls to

diff  --git a/llvm/lib/CodeGen/ExpandReductions.cpp b/llvm/lib/CodeGen/ExpandReductions.cpp
index f0e6fd7463f8..79b6dc9154b3 100644
--- a/llvm/lib/CodeGen/ExpandReductions.cpp
+++ b/llvm/lib/CodeGen/ExpandReductions.cpp
@@ -1,4 +1,4 @@
-//===--- ExpandReductions.cpp - Expand experimental reduction intrinsics --===//
+//===- ExpandReductions.cpp - Expand reduction intrinsics -----------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.


        


More information about the llvm-commits mailing list