Skip to content

Commit e17b081

Browse files
committed
Suppress over-enthusiastic clang-format
1 parent a84872e commit e17b081

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4865,8 +4865,8 @@ AMDGPUTargetLowering::foldFreeOpFromSelect(TargetLowering::DAGCombinerInfo &DCI,
48654865
if (Inv)
48664866
std::swap(NewLHS, NewRHS);
48674867

4868-
SDValue NewSelect =
4869-
DAG.getNode(ISD::SELECT, SL, VT, Cond, NewLHS, NewRHS);
4868+
SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT,
4869+
Cond, NewLHS, NewRHS);
48704870
DCI.AddToWorklist(NewSelect.getNode());
48714871
return DAG.getNode(LHS.getOpcode(), SL, VT, NewSelect);
48724872
}

llvm/test/CodeGen/AMDGPU/or.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 3
22
; RUN: llc -amdgpu-scalarize-global-loads=false -mtriple=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefix=GFX6 %s
33
; RUN: llc -amdgpu-scalarize-global-loads=false -mtriple=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=GFX8 %s
4-
4+
; RUN: llc -amdgpu-scalarize-global-loads=false -mtriple=r600 -mcpu=redwood < %s | FileCheck -check-prefix=EG %s
55

66
define amdgpu_ps <2 x i32> @s_or_v2i32(<2 x i32> inreg %num, <2 x i32> inreg %den) {
77
; GFX6-LABEL: s_or_v2i32:

0 commit comments

Comments
 (0)