diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2018-02-08 02:29:56 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2018-02-08 02:29:56 +0000 |
commit | 23581e5ee44cccdd724ad8ef5cced19013c0b86c (patch) | |
tree | b9bfd07513ee88288c970df17b2985f29cd7fd93 | |
parent | 35cdfe2d1d1ab8b2950254a1f7d57bc1b14183c9 (diff) | |
download | bcm5719-llvm-23581e5ee44cccdd724ad8ef5cced19013c0b86c.tar.gz bcm5719-llvm-23581e5ee44cccdd724ad8ef5cced19013c0b86c.zip |
Add space inside the regular expression.
This should now pass on both ppc and x86. Sorry about the noise.
llvm-svn: 324556
-rw-r--r-- | compiler-rt/test/profile/instrprof-reset-counters.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/profile/instrprof-reset-counters.c b/compiler-rt/test/profile/instrprof-reset-counters.c index ac09764e037..f15bc0d8e3a 100644 --- a/compiler-rt/test/profile/instrprof-reset-counters.c +++ b/compiler-rt/test/profile/instrprof-reset-counters.c @@ -12,7 +12,7 @@ int main(void) { return 0; } void foo(int N) { - // CHECK-LABEL: define{{(dso_local)?}} void @foo( + // CHECK-LABEL: define{{( dso_local)?}} void @foo( // CHECK: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[FOO:[0-9]+]] if (N) {} } |