[llvm] 5cbd5c6 - [VP][NFC] Correct formatting in unit test

Fraser Cormack via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 15 04:47:39 PDT 2021


Author: Fraser Cormack
Date: 2021-07-15T12:38:47+01:00
New Revision: 5cbd5c62beeb8f1cb1408bc8f68ec1b522b4061c

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

LOG: [VP][NFC] Correct formatting in unit test

Added: 
    

Modified: 
    llvm/unittests/IR/VPIntrinsicTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/IR/VPIntrinsicTest.cpp b/llvm/unittests/IR/VPIntrinsicTest.cpp
index f5ff54b55cc6..0ca0da81a33e 100644
--- a/llvm/unittests/IR/VPIntrinsicTest.cpp
+++ b/llvm/unittests/IR/VPIntrinsicTest.cpp
@@ -46,10 +46,14 @@ class VPIntrinsicTest : public testing::Test {
       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);
   }


        


More information about the llvm-commits mailing list