From 68cfb02668550e3398c8ee8915732daf132f2652 Mon Sep 17 00:00:00 2001 From: Alex Zinenko Date: Thu, 17 Sep 2020 12:59:57 +0200 Subject: [PATCH] [mlir] turn clang-format back on in C API test C API test uses FileCheck comments inside C code and needs to temporarily switch off clang-format to prevent it from messing with FileCheck directives. A recently landed commit forgot to turn it back on after a block of FileCheck comments. Fix that. --- mlir/test/CAPI/ir.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mlir/test/CAPI/ir.c b/mlir/test/CAPI/ir.c index fa63c72..01b007e 100644 --- a/mlir/test/CAPI/ir.c +++ b/mlir/test/CAPI/ir.c @@ -832,6 +832,7 @@ int main() { // CHECK: (d0, d1, d2) -> (d0) // CHECK: (d0, d1, d2) -> (d2) // CHECK: 0 + // clang-format on fprintf(stderr, "@affineMap\n"); errcode = printAffineMap(ctx); fprintf(stderr, "%d\n", errcode); -- 2.7.4