[VP][NFC] Correct formatting in unit test
authorFraser Cormack <fraser@codeplay.com>
Thu, 15 Jul 2021 11:30:32 +0000 (12:30 +0100)
committerFraser Cormack <fraser@codeplay.com>
Thu, 15 Jul 2021 11:38:47 +0000 (12:38 +0100)
llvm/unittests/IR/VPIntrinsicTest.cpp

index f5ff54b..0ca0da8 100644 (file)
@@ -46,10 +46,14 @@ protected:
       Str << " declare <8 x float> @llvm.vp." << BinaryFPOpcode
           << ".v8f32(<8 x float>, <8 x float>, <8 x i1>, i32) ";
 
-    Str << " declare void @llvm.vp.store.v8i32.p0v8i32(<8 x i32>, <8 x i32>*, <8 x i1>, i32) ";
-        Str << " declare void @llvm.vp.scatter.v8i32.v8p0i32(<8 x i32>, <8 x i32*>, <8 x i1>, i32) ";
-        Str << " declare <8 x i32> @llvm.vp.load.v8i32.p0v8i32(<8 x i32>*, <8 x i1>, i32) ";
-        Str << " declare <8 x i32> @llvm.vp.gather.v8i32.v8p0i32(<8 x i32*>, <8 x i1>, i32) ";
+    Str << " declare void @llvm.vp.store.v8i32.p0v8i32(<8 x i32>, <8 x i32>*, "
+           "<8 x i1>, i32) ";
+    Str << " declare void @llvm.vp.scatter.v8i32.v8p0i32(<8 x i32>, <8 x "
+           "i32*>, <8 x i1>, i32) ";
+    Str << " declare <8 x i32> @llvm.vp.load.v8i32.p0v8i32(<8 x i32>*, <8 x "
+           "i1>, i32) ";
+    Str << " declare <8 x i32> @llvm.vp.gather.v8i32.v8p0i32(<8 x i32*>, <8 x "
+           "i1>, i32) ";
 
     return parseAssemblyString(Str.str(), Err, C);
   }