[compiler-rt] a1f3eb2 - Disable instrprof-merging.cpp on powerpc64 (D69471 follow up)

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 19:03:39 PST 2020


Author: Vedant Kumar
Date: 2020-02-28T19:00:38-08:00
New Revision: a1f3eb2085c14cc2c5291afad10a58f3719dfa35

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

LOG: Disable instrprof-merging.cpp on powerpc64 (D69471 follow up)

An execution count goes missing for a constructor, this needs
investigation:

http://lab.llvm.org:8011/builders/clang-ppc64be-linux/builds/45132/

```
/home/buildbots/ppc64be-clang-test/clang-ppc64be/llvm/compiler-rt/test/profile/instrprof-merging.cpp:28:16:
error: V1: expected string not found in input
 A() {} // V1: [[@LINE]]{{ *}}|{{ *}}1

<stdin>:28:32: note: possible intended match here
 28| | A() {} // V1: [[@LINE]]{{ *}}|{{ *}}1
```

Added: 
    

Modified: 
    compiler-rt/test/profile/instrprof-merging.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/profile/instrprof-merging.cpp b/compiler-rt/test/profile/instrprof-merging.cpp
index 692b049ec45c..26c191a71537 100644
--- a/compiler-rt/test/profile/instrprof-merging.cpp
+++ b/compiler-rt/test/profile/instrprof-merging.cpp
@@ -1,3 +1,4 @@
+// UNSUPPORTED: powerpc64
 // 1) Compile shared code into 
diff erent object files and into an executable.
 
 // RUN: %clangxx_profgen -std=c++14 -fcoverage-mapping %s -c -o %t.v1.o \


        


More information about the llvm-commits mailing list