From 37f2389c9d8af21e294c59f2ab51149a44fe2cc9 Mon Sep 17 00:00:00 2001 From: Ehsan Amiri Date: Fri, 18 Nov 2016 16:24:27 +0000 Subject: [PATCH] [PPC] limit line width to 80 characters NFC. Forgot to fix this in the original commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287350 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCInstrAltivec.td | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PPCInstrAltivec.td b/lib/Target/PowerPC/PPCInstrAltivec.td index a2787f88329..8f63d671ff1 100644 --- a/lib/Target/PowerPC/PPCInstrAltivec.td +++ b/lib/Target/PowerPC/PPCInstrAltivec.td @@ -1321,7 +1321,8 @@ def VNEGW : VX_VT5_EO5_VB5<1538, 6, "vnegw", def VNEGD : VX_VT5_EO5_VB5<1538, 7, "vnegd", [(set v2i64:$vD, - (sub (v2i64 (bitconvert (v4i32 immAllZerosV))), v2i64:$vB))]>; + (sub (v2i64 (bitconvert (v4i32 immAllZerosV))), + v2i64:$vB))]>; // Vector Parity Byte def VPRTYBW : VX_VT5_EO5_VB5<1538, 8, "vprtybw", [(set v4i32:$vD, -- 2.40.0