diff options
| author | Chris Lattner <clattner@google.com> | 2018-12-29 13:56:57 -0800 |
|---|---|---|
| committer | jpienaar <jpienaar@google.com> | 2019-03-29 14:46:29 -0700 |
| commit | 8ef2552df7b14824a1a2990df3a67659d1d94ea6 (patch) | |
| tree | 2a5955c4f41fe129e806870f029835aed4ca817c /mlir/test/Transforms/Vectorize | |
| parent | aaa1d77e964c6b7595348c7157158a00bc7cc1a6 (diff) | |
| download | bcm5719-llvm-8ef2552df7b14824a1a2990df3a67659d1d94ea6.tar.gz bcm5719-llvm-8ef2552df7b14824a1a2990df3a67659d1d94ea6.zip | |
Have the asmprinter take advantage of the new capabilities of the asmparser, by
printing the entry block in a CFG function's argument line. Since I'm touching
all of the testcases anyway, change the argument list from printing as
"%arg : type" to "%arg: type" which is more consistent with bb arguments.
In addition to being more consistent, this is a much nicer look for cfg functions.
PiperOrigin-RevId: 227240069
Diffstat (limited to 'mlir/test/Transforms/Vectorize')
| -rw-r--r-- | mlir/test/Transforms/Vectorize/vector_utils.mlir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/test/Transforms/Vectorize/vector_utils.mlir b/mlir/test/Transforms/Vectorize/vector_utils.mlir index ed1d7b76f0f..2cfa7af88cd 100644 --- a/mlir/test/Transforms/Vectorize/vector_utils.mlir +++ b/mlir/test/Transforms/Vectorize/vector_utils.mlir @@ -1,7 +1,7 @@ // RUN: mlir-opt %s -vectorizer-test -vector-shape-ratio 4 -vector-shape-ratio 8 | FileCheck %s // RUN: mlir-opt %s -vectorizer-test -vector-shape-ratio 2 -vector-shape-ratio 5 -vector-shape-ratio 2 | FileCheck %s -check-prefix=TEST-3x4x5x8 -mlfunc @vector_add_2d(%arg0 : index, %arg1 : index) -> f32 { +mlfunc @vector_add_2d(%arg0: index, %arg1: index) -> f32 { // Nothing should be matched in this first block. // CHECK-NOT:matched: {{.*}} = alloc{{.*}} // CHECK-NOT:matched: {{.*}} = constant 0{{.*}} |

