summaryrefslogtreecommitdiffstats
path: root/clang/test/Profile/cxx-lambda.cpp
Commit message (Collapse)AuthorAgeFilesLines
* IR: Make metadata typeless in assembly, clang sideDuncan P. N. Exon Smith2014-12-151-5/+5
| | | | | | Match LLVM changes from r224257. llvm-svn: 224259
* InstrProf: Use the same names for variables as we use in the profileJustin Bogner2014-12-021-1/+1
| | | | | | | | There's no need to use different names for the local variables than we use in the profile itself, and it's a bit simpler and easier to debug if we're consistent. llvm-svn: 223173
* InstrProf: Set profile data to visibility hiddenDuncan P. N. Exon Smith2014-05-161-2/+2
| | | | | | | | | | | | | Shared objects are fairly broken for InstrProf right now -- a follow-up commit in compiler-rt will fix the rest of this. The main problem here is that at link time, profile data symbols in the shared object might get used instead of symbols from the main executable, creating invalid profile data sections. <rdar://problem/16918688> llvm-svn: 208939
* test: Use llvm-profdata merge in Profile testsJustin Bogner2014-04-171-1/+2
| | | | | | | | | | | In preparation for using a binary format for instrumentation based profiling, explicitly treat the test inputs as text and transform them before running. This will allow us to leave the checked in files in human readable format once the instrumentation format is binary. No functional change. llvm-svn: 206509
* Fix Profile:cxx-lambda.cpp test for targets that do not generate zeroextKeith Walker2014-04-171-2/+2
| | | | | | | Change an expected match to allow for the fact that some targets may not generated the zeroext operation. llvm-svn: 206467
* CodeGen: Fix handling of C++11 lambdas in profilingJustin Bogner2014-04-111-0/+57
Until now we were generating duplicate counters for lambdas: one set in the function where the lambda was declared and another for the lambda itself. Instead, we should skip over the bodies of lambdas in their containing contexts. llvm-svn: 206081
OpenPOWER on IntegriCloud