From 5ec079b92eaa97f91a30e1fc60ace93206bcec28 Mon Sep 17 00:00:00 2001 From: Artem Dergachev Date: Sat, 10 Feb 2018 03:04:59 +0000 Subject: [PATCH] [analyzer] Fix a merge error in -analyzer-config tests. It was introduced when two -analyzer-config options were added almost simultaneously in r324793 and r324668 and the option count was not rebased correctly in the tests. Fixes the buildbots. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@324801 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/analyzer-config.c | 2 +- test/Analysis/analyzer-config.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Analysis/analyzer-config.c b/test/Analysis/analyzer-config.c index 9575784e08..78868a5625 100644 --- a/test/Analysis/analyzer-config.c +++ b/test/Analysis/analyzer-config.c @@ -34,4 +34,4 @@ void foo() { // CHECK-NEXT: unroll-loops = false // CHECK-NEXT: widen-loops = false // CHECK-NEXT: [stats] -// CHECK-NEXT: num-entries = 21 +// CHECK-NEXT: num-entries = 22 diff --git a/test/Analysis/analyzer-config.cpp b/test/Analysis/analyzer-config.cpp index c89077f534..b42f03780d 100644 --- a/test/Analysis/analyzer-config.cpp +++ b/test/Analysis/analyzer-config.cpp @@ -45,4 +45,4 @@ public: // CHECK-NEXT: unroll-loops = false // CHECK-NEXT: widen-loops = false // CHECK-NEXT: [stats] -// CHECK-NEXT: num-entries = 26 +// CHECK-NEXT: num-entries = 27 -- 2.50.1