From 5af5ac4e3ed6ad187cf075501288e62a48560cbf Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Wed, 5 Apr 2023 11:49:41 +0100 Subject: [PATCH] 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. --- llvm/include/llvm/CodeGen/ExpandReductions.h | 2 +- llvm/include/llvm/CodeGen/Passes.h | 3 +-- llvm/lib/CodeGen/ExpandReductions.cpp | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/llvm/include/llvm/CodeGen/ExpandReductions.h b/llvm/include/llvm/CodeGen/ExpandReductions.h index 5dbed07..91c2507 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 3ee3e50..69dc805 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 f0e6fd7..79b6dc9 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. -- 2.7.4