[PATCH] D52839: Inform AST's UnaryOperator of FENV_ACCESS

2018-10-11 Thread Kevin P. Neal via Phabricator via cfe-commits
kpn updated this revision to Diff 169266. kpn added a comment. Address review comments. Add a test case. The test depends on https://reviews.llvm.org/D53157, but it reads easily enough. Richard, does this work for you? https://reviews.llvm.org/D52839 Files: include/clang/AST/Expr.h lib/AS

[PATCH] D52839: Inform AST's UnaryOperator of FENV_ACCESS

2018-10-11 Thread Roman Lebedev via Phabricator via cfe-commits
lebedev.ri added inline comments. Comment at: include/clang/AST/Expr.h:1791 + // otherwise. + unsigned FPFeatures : 3; + Why as the first one, and not after `CanOverflow` ... Comment at: include/clang/AST/Expr.h:1809 +Opc(opc), CanOve

[PATCH] D52839: Inform AST's UnaryOperator of FENV_ACCESS

2018-10-11 Thread Kevin P. Neal via Phabricator via cfe-commits
kpn added a comment. I forgot to address the template question. I've spend the past 18 years doing SystemZ backend work on multiple {,JIT} compilers. I'm not really in a position to answer your question about how to handle getting these FP bits down into C++ templates. I hope that won't hold up

[PATCH] D50766: Fix false positive unsequenced access and modification warning in array subscript expression.

2018-10-11 Thread Mateusz Janek via Phabricator via cfe-commits
stryku marked an inline comment as done. stryku added inline comments. Comment at: test/SemaCXX/warn-unsequenced-cxx17.cpp:1 +// RUN: %clang_cc1 -fsyntax-only -verify -std=c++17 -Wno-unused %s + lebedev.ri wrote: > Rakete wrote: > > lebedev.ri wrote: > > > On

[PATCH] D50766: Fix false positive unsequenced access and modification warning in array subscript expression.

2018-10-11 Thread Mateusz Janek via Phabricator via cfe-commits
stryku added a comment. @rsmith Of course I would like. Not sure what's better: to submit one patch per case or submit all of them in one patch (didn't deal much with them, not sure how big will the change be)? https://reviews.llvm.org/D50766 ___

r344281 - [HIP] Replace irif library with hip.amdgcn.bc

2018-10-11 Thread Aaron Enye Shi via cfe-commits
Author: aaronenyeshi Date: Thu Oct 11 12:41:54 2018 New Revision: 344281 URL: http://llvm.org/viewvc/llvm-project?rev=344281&view=rev Log: [HIP] Replace irif library with hip.amdgcn.bc No longer use irif amdgcn library, instead we will use the previous fence functions from new hip.amdgcn.bc bitc

[PATCH] D52835: [Diagnostics] Check integer to floating point number implicit conversions

2018-10-11 Thread Eli Friedman via Phabricator via cfe-commits
efriedma added inline comments. Comment at: lib/Sema/SemaChecking.cpp:10881-10882 +S.DiagRuntimeBehavior( +E->getExprLoc(), E, +S.PDiag(diag::warn_impcast_literal_float_to_integer) +<< E->getType() << T << PrettySourceValue << Prett

[PATCH] D53025: [clang-tidy] implement new check for const return types.

2018-10-11 Thread Yitzhak Mandelbaum via Phabricator via cfe-commits
ymandel updated this revision to Diff 169277. ymandel added a comment. Adusted code in respone to comments. Major differences are: - more warning in situations where a FixIt can't be suggested. - more tests. Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D53025 Files: clang-

[PATCH] D52835: [Diagnostics] Check integer to floating point number implicit conversions

2018-10-11 Thread Dávid Bolvanský via Phabricator via cfe-commits
xbolva00 added inline comments. Comment at: lib/Sema/SemaChecking.cpp:10881-10882 +S.DiagRuntimeBehavior( +E->getExprLoc(), E, +S.PDiag(diag::warn_impcast_literal_float_to_integer) +<< E->getType() << T << PrettySourceValue << Prett

r344285 - [HIP] Remove unused irif bitcode from test

2018-10-11 Thread Aaron Enye Shi via cfe-commits
Author: aaronenyeshi Date: Thu Oct 11 12:52:32 2018 New Revision: 344285 URL: http://llvm.org/viewvc/llvm-project?rev=344285&view=rev Log: [HIP] Remove unused irif bitcode from test This is part of previous commit [HIP] Replace irif library with hip.amdgcn.bc Reviewers: yaxunl Differential Revi

[PATCH] D52673: [HIP] Remove disabled irif library

2018-10-11 Thread Phabricator via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL344285: [HIP] Remove unused irif bitcode from test (authored by aaronenyeshi, committed by ). Herald added subscribers: llvm-commits, jvesely. Changed prior to commit: https://reviews.llvm.org/D52673?vs

[PATCH] D53025: [clang-tidy] implement new check for const return types.

2018-10-11 Thread Yitzhak Mandelbaum via Phabricator via cfe-commits
ymandel updated this revision to Diff 169280. ymandel added a comment. comment tweak Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D53025 Files: clang-tidy/readability/CMakeLists.txt clang-tidy/readability/ConstValueReturnCheck.cpp clang-tidy/readability/ConstValueReturnC

[PATCH] D53025: [clang-tidy] implement new check for const return types.

2018-10-11 Thread Eugene Zelenko via Phabricator via cfe-commits
Eugene.Zelenko added inline comments. Comment at: docs/clang-tidy/checks/readability-const-value-return.rst:7 +Checks for functions with a ``const``-qualified return type and recommends +removal of the ``const`` keyword. Such use of ``const`` is superfluous, and +prevents valuab

[PATCH] D53025: [clang-tidy] implement new check for const return types.

2018-10-11 Thread Yitzhak Mandelbaum via Phabricator via cfe-commits
ymandel updated this revision to Diff 169282. ymandel added a comment. Spacing fix. Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D53025 Files: clang-tidy/readability/CMakeLists.txt clang-tidy/readability/ConstValueReturnCheck.cpp clang-tidy/readability/ConstValueReturnCh

[PATCH] D53151: [python] [tests] Fix calling tests on Windows (hopefully)

2018-10-11 Thread Reid Kleckner via Phabricator via cfe-commits
rnk added a comment. lgtm The cmake builtin tools are pretty useful. =) Repository: rC Clang https://reviews.llvm.org/D53151 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D40988: Clang-format: add finer-grained options for putting all arguments on one line

2018-10-11 Thread Russell McClellan via Phabricator via cfe-commits
russellmcc updated this revision to Diff 169288. russellmcc added a comment. Added suggested for loops to the test https://reviews.llvm.org/D40988 Files: docs/ClangFormatStyleOptions.rst include/clang/Format/Format.h lib/Format/ContinuationIndenter.cpp lib/Format/Format.cpp unittests/

[PATCH] D53025: [clang-tidy] implement new check for const return types.

2018-10-11 Thread Yitzhak Mandelbaum via Phabricator via cfe-commits
ymandel updated this revision to Diff 169290. ymandel marked 11 inline comments as done. ymandel added a comment. Comment fix. Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D53025 Files: clang-tidy/readability/CMakeLists.txt clang-tidy/readability/ConstValueReturnCheck.cpp

[PATCH] D53025: [clang-tidy] implement new check for const return types.

2018-10-11 Thread Yitzhak Mandelbaum via Phabricator via cfe-commits
ymandel added a comment. Thank you for the detailed comments! They were quite helpful, especially as this is my first llvm/clang review. Comment at: clang-tidy/readability/ConstValueReturnCheck.cpp:25 + +// Finds the location of the relevant "const" token in `Def`. +llvm::Opt

[PATCH] D52814: [PassManager/Sanitizer] Enable usage of ported AddressSanitizer passes with -fsanitize=address

2018-10-11 Thread Philip Pfaffe via Phabricator via cfe-commits
philip.pfaffe added a comment. You're right, my bad; I missed the fact that it's EP_OptimizerLast, which has no equivalent in the new PM. Your implementation is actually correct here. Did you run your test in a debug build? Repository: rC Clang https://reviews.llvm.org/D52814 ___

[PATCH] D53121: [Driver] Add defaults for Android ARM FPUs.

2018-10-11 Thread Dan Albert via Phabricator via cfe-commits
danalbert added inline comments. Comment at: lib/Driver/ToolChains/Arch/ARM.cpp:360 + unsigned ArchVersion; + if (ArchName.empty()) peter.smith wrote: > Do you need to parse the arch version here? I would expect the -march=armv7 > to be reflected in getARMSu

[PATCH] D53121: [Driver] Add defaults for Android ARM FPUs.

2018-10-11 Thread Dan Albert via Phabricator via cfe-commits
danalbert updated this revision to Diff 169291. danalbert added a comment. Addressed review comments. Repository: rC Clang https://reviews.llvm.org/D53121 Files: lib/Driver/ToolChains/Arch/ARM.cpp test/Driver/arm-mfpu.c Index: test/Driver/arm-mfpu.c

[PATCH] D50766: Fix false positive unsequenced access and modification warning in array subscript expression.

2018-10-11 Thread Richard Smith - zygoloid via Phabricator via cfe-commits
rsmith added a comment. In https://reviews.llvm.org/D50766#1262460, @stryku wrote: > @rsmith Of course. Not sure what's better: to submit one patch per case or > submit all of them in one patch (didn't deal much with them, not sure how big > will the change be)? It's really up to you. I don't

r344288 - [python] [tests] Fix calling tests on Windows

2018-10-11 Thread Michal Gorny via cfe-commits
Author: mgorny Date: Thu Oct 11 13:26:55 2018 New Revision: 344288 URL: http://llvm.org/viewvc/llvm-project?rev=344288&view=rev Log: [python] [tests] Fix calling tests on Windows Fix passing arguments to the Python test command to use 'env' builtin CMake command, in order to fix compatibility wit

[PATCH] D53151: [python] [tests] Fix calling tests on Windows (hopefully)

2018-10-11 Thread Michał Górny via Phabricator via cfe-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit rL344288: [python] [tests] Fix calling tests on Windows (authored by mgorny, committed by ). Herald added a subscriber: llvm

[PATCH] D40988: Clang-format: add finer-grained options for putting all arguments on one line

2018-10-11 Thread Russell McClellan via Phabricator via cfe-commits
russellmcc added a comment. Sorry for dropping this for so long! Stuff got busy at work and I've been happily using my fork with this change for some time. I would really like this to get in, and promise to be responsive to feedback. Comment at: lib/Format/ContinuationInden

r344293 - [Driver] Fix --hash-style choice for Android.

2018-10-11 Thread Dan Albert via cfe-commits
Author: danalbert Date: Thu Oct 11 13:39:32 2018 New Revision: 344293 URL: http://llvm.org/viewvc/llvm-project?rev=344293&view=rev Log: [Driver] Fix --hash-style choice for Android. Summary: Android supports GNU style hashes as of Marshmallow, so we should be generating both styles for pre-M targ

[PATCH] D53118: [Driver] Fix --hash-style choice for Android.

2018-10-11 Thread Dan Albert via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL344293: [Driver] Fix --hash-style choice for Android. (authored by danalbert, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM https://reviews.llvm.org/D53118 Files: cfe/

[PATCH] D52750: [Diagnostics] Check for integer overflow in array size expressions

2018-10-11 Thread Dávid Bolvanský via Phabricator via cfe-commits
xbolva00 added a comment. In https://reviews.llvm.org/D52750#1261746, @Rakete wrote: > Nah, you don't even need to call `EvaluateForOverflow` I believe. :) Have a > look overflow evaluation is done. Well.. if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) { if (Re

r344295 - [Driver] Default to `-z now` and `-z relro` on Android.

2018-10-11 Thread Dan Albert via cfe-commits
Author: danalbert Date: Thu Oct 11 13:57:54 2018 New Revision: 344295 URL: http://llvm.org/viewvc/llvm-project?rev=344295&view=rev Log: [Driver] Default to `-z now` and `-z relro` on Android. Summary: RTLD_LAZY is not supported on Android (though failing to use `-z now` will work since it is assu

[PATCH] D53117: [Driver] Default to `-z now` and `-z relro` on Android.

2018-10-11 Thread Dan Albert via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rC344295: [Driver] Default to `-z now` and `-z relro` on Android. (authored by danalbert, committed by ). Changed prior to commit: https://reviews.llvm.org/D53117?vs=169133&id=169300#toc Repository: rC

r344296 - [Driver] Default Android toolchains to libc++.

2018-10-11 Thread Dan Albert via cfe-commits
Author: danalbert Date: Thu Oct 11 13:58:43 2018 New Revision: 344296 URL: http://llvm.org/viewvc/llvm-project?rev=344296&view=rev Log: [Driver] Default Android toolchains to libc++. Reviewers: srhines, pirama, EricWF Reviewed By: srhines Subscribers: cfe-commits Differential Revision: https:/

[PATCH] D53109: [Driver] Default Android toolchains to libc++.

2018-10-11 Thread Dan Albert via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL344296: [Driver] Default Android toolchains to libc++. (authored by danalbert, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM https://reviews.llvm.org/D53109 Files: cfe

[PATCH] D53170: [clang-doc] Switch to default to all-TUs executor

2018-10-11 Thread Julie Hockett via Phabricator via cfe-commits
juliehockett created this revision. juliehockett added reviewers: ioeric, leonardchan, jakehehrlich, lebedev.ri, phosek. juliehockett added a project: clang-tools-extra. Herald added subscribers: kadircet, arphaman. Since we generally want to document a whole project, not just one file. @ioeric,

[PATCH] D53170: [clang-doc] Switch to default to all-TUs executor

2018-10-11 Thread Leonard Chan via Phabricator via cfe-commits
leonardchan added inline comments. Comment at: clang-tools-extra/clang-doc/tool/ClangDocMain.cpp:90-92 +static llvm::cl::opt +ClangDocExecutorName("doc-executor", llvm::cl::desc("The name of the executor to use in clang-doc."), + llvm::cl::init("all-TUs")); -

[PATCH] D53170: [clang-doc] Switch to default to all-TUs executor

2018-10-11 Thread Julie Hockett via Phabricator via cfe-commits
juliehockett updated this revision to Diff 169304. https://reviews.llvm.org/D53170 Files: clang-tools-extra/clang-doc/tool/ClangDocMain.cpp Index: clang-tools-extra/clang-doc/tool/ClangDocMain.cpp === --- clang-tools-extra/clang-

r344297 - Revert "[Driver] Default Android toolchains to libc++."

2018-10-11 Thread Dan Albert via cfe-commits
Author: danalbert Date: Thu Oct 11 14:28:42 2018 New Revision: 344297 URL: http://llvm.org/viewvc/llvm-project?rev=344297&view=rev Log: Revert "[Driver] Default Android toolchains to libc++." Breaks some of the Android bots because they aren't expecting to need to explicitly set -stdlib. This re

[PATCH] D53102: Support for the mno-tls-direct-seg-refs flag

2018-10-11 Thread Ruslan Nikolaev via Phabricator via cfe-commits
nruslan added a comment. @hans, @craig.topper : If everything is fine, can someone check in the clang and llvm patches on my behalf? I do not have commit access. https://reviews.llvm.org/D53102 ___ cfe-commits mailing list cfe-commits@lists.llvm.or

[PATCH] D53170: [clang-doc] Switch to default to all-TUs executor

2018-10-11 Thread Eugene Zelenko via Phabricator via cfe-commits
Eugene.Zelenko added inline comments. Comment at: clang-tools-extra/clang-doc/tool/ClangDocMain.cpp:205 + llvm::cl::OptionCategory &Category) { + auto OptionsParser = + CommonOptionsParser::create(argc, argv, Category, llvm::cl::ZeroOrMore); --

[clang-tools-extra] r344299 - [Documentation] Rephrase modernize-deprecated-ios-base-aliases description. Add clangd and clang-doc placeholders in Release Notes.

2018-10-11 Thread Eugene Zelenko via cfe-commits
Author: eugenezelenko Date: Thu Oct 11 14:40:32 2018 New Revision: 344299 URL: http://llvm.org/viewvc/llvm-project?rev=344299&view=rev Log: [Documentation] Rephrase modernize-deprecated-ios-base-aliases description. Add clangd and clang-doc placeholders in Release Notes. Modified: clang-tool

[PATCH] D53024: [analyzer][www] Add more open projects

2018-10-11 Thread Artem Dergachev via Phabricator via cfe-commits
NoQ added a comment. > In addition 2018 Bay Area LLVM Developers' Meetings may bring some new open > projects :) Actually, let's commit this before the conference, even if it's not perfect, so that people who suddenly get inspired to work on Static Analyzer already had an updated list :) ==

[PATCH] D52750: [Diagnostics] Check for integer overflow in array size expressions

2018-10-11 Thread Richard Smith - zygoloid via Phabricator via cfe-commits
rsmith added inline comments. Comment at: lib/Sema/SemaType.cpp:2231 } + + if (isa(ArraySize)) xbolva00 wrote: > @rsmith what about this place for check? This is still evaluating the expression twice. To avoid that, you need to change the existing co

r344311 - [analyzer] Retain count checker for OSObject: recognize OSDynamicCast

2018-10-11 Thread George Karpenkov via cfe-commits
Author: george.karpenkov Date: Thu Oct 11 15:59:16 2018 New Revision: 344311 URL: http://llvm.org/viewvc/llvm-project?rev=344311&view=rev Log: [analyzer] Retain count checker for OSObject: recognize OSDynamicCast For now, tresting the cast as a no-op, and disregarding the case where the output be

r344313 - [analyzer] Experiment with an iteration order only based on location, and not using the stack frame

2018-10-11 Thread George Karpenkov via cfe-commits
Author: george.karpenkov Date: Thu Oct 11 15:59:59 2018 New Revision: 344313 URL: http://llvm.org/viewvc/llvm-project?rev=344313&view=rev Log: [analyzer] Experiment with an iteration order only based on location, and not using the stack frame Differential Revision: https://reviews.llvm.org/D5305

r344312 - [analyzer] Avoid unneeded invalidation in RetainCountChecker

2018-10-11 Thread George Karpenkov via cfe-commits
Author: george.karpenkov Date: Thu Oct 11 15:59:38 2018 New Revision: 344312 URL: http://llvm.org/viewvc/llvm-project?rev=344312&view=rev Log: [analyzer] Avoid unneeded invalidation in RetainCountChecker Differential Revision: https://reviews.llvm.org/D53168 Modified: cfe/trunk/lib/StaticAn

[PATCH] D51240: Add a flag to remap manglings when reading profile data information.

2018-10-11 Thread Richard Smith - zygoloid via Phabricator via cfe-commits
rsmith abandoned this revision. rsmith added a comment. Herald added a subscriber: dang. The constituent pieces have all landed. https://reviews.llvm.org/D51240 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/ma

[PATCH] D53069: [analyzer][www] Update avaible_checks.html

2018-10-11 Thread Umann Kristóf via Phabricator via cfe-commits
Szelethus updated this revision to Diff 169342. Szelethus edited the summary of this revision. Szelethus added a comment. - Removed osx.cocoa.Loops, will be placed in implicit_checks.html I still didn't add more description to objc checkers for the reasons stated above. https://reviews.llvm.or

r344319 - Update user's manual documentation of profile remapping file to match

2018-10-11 Thread Richard Smith via cfe-commits
Author: rsmith Date: Thu Oct 11 16:48:11 2018 New Revision: 344319 URL: http://llvm.org/viewvc/llvm-project?rev=344319&view=rev Log: Update user's manual documentation of profile remapping file to match llvm-cxxmap documentation. Add a hint as to how to perform off-line profile data remapping. M

[PATCH] D52984: [analyzer] Checker reviewer's checklist

2018-10-11 Thread Artem Dergachev via Phabricator via cfe-commits
NoQ added a comment. In https://reviews.llvm.org/D52984#1260761, @george.karpenkov wrote: > @Szelethus @xazax.hun Since you guys are looking into the website, do you > know why the top bar has disappeared from all pages? (E.g. > http://clang-analyzer.llvm.org/available_checks.html ) The relev

r344322 - [analyzer] Fix a bug in unexplored_first_location_queue iteration order.

2018-10-11 Thread George Karpenkov via cfe-commits
Author: george.karpenkov Date: Thu Oct 11 17:52:13 2018 New Revision: 344322 URL: http://llvm.org/viewvc/llvm-project?rev=344322&view=rev Log: [analyzer] Fix a bug in unexplored_first_location_queue iteration order. Pointed out by Artem in post-commit review for https://reviews.llvm.org/D53058 M

[PATCH] D52984: [analyzer] Checker reviewer's checklist

2018-10-11 Thread George Karpenkov via Phabricator via cfe-commits
george.karpenkov added a comment. > inline the header into every page, which is horrible is it though? we probably also should be moving towards an auto-generated model anyway, if we want to e.g. automatically build sections of a website from the code. https://reviews.llvm.org/D52984 _

[PATCH] D52984: [analyzer] Checker reviewer's checklist

2018-10-11 Thread Artem Dergachev via Phabricator via cfe-commits
NoQ added a comment. > we probably also should be moving towards an auto-generated model anyway, if > we want to e.g. automatically build sections of a website from the code. This too will most likely require server maintainers to intervene, so i think fixing SSI is more realistic. https://re

[PATCH] D52984: [analyzer] Checker reviewer's checklist

2018-10-11 Thread George Karpenkov via Phabricator via cfe-commits
george.karpenkov added a comment. > This too will most likely require server maintainers to intervene, so i think > fixing SSI is more realistic. Not really. The way it is done e.g. for http://clang.llvm.org/docs/LibASTMatchersReference.html is the HTML files are in the repo, there is a script

[PATCH] D52984: [analyzer] Checker reviewer's checklist

2018-10-11 Thread Artem Dergachev via Phabricator via cfe-commits
NoQ added a comment. > is it though? If we simply add a new menu point, it'll require us to modify a huge number of files. We might get away with good comments that explain the situation and making sure that all changes are done with sed, but i guess we'll still be stuck forever. > HTML files

[PATCH] D53024: [analyzer][www] Add more open projects

2018-10-11 Thread George Karpenkov via Phabricator via cfe-commits
george.karpenkov added a comment. @Szelethus I take it this is mostly formed from @NoQ email? Language could use polishing in quite a few places, could I just commandeer this revision and try to fix it? Comment at: www/analyzer/open_projects.html:29 +Implement a dataflow

[PATCH] D53154: [CodeGen] Handle extern references to OBJC_CLASS_$_*

2018-10-11 Thread Akira Hatanaka via Phabricator via cfe-commits
ahatanak added a comment. LGTM Repository: rC Clang https://reviews.llvm.org/D53154 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D51729: [Tooling] JSONCompilationDatabasePlugin infers compile commands for missing files

2018-10-11 Thread Michał Górny via Phabricator via cfe-commits
mgorny added a comment. Unless my bisect is mistaken, this broke Clang Python binding test: https://github.com/llvm-mirror/clang/blob/master/bindings/python/tests/cindex/test_cdb.py#L34 The test apparently assumes that compilation database will not return anything for a file that does not exist.

[PATCH] D52835: [Diagnostics] Check integer to floating point number implicit conversions

2018-10-11 Thread Dávid Bolvanský via Phabricator via cfe-commits
xbolva00 added a comment. As noted, this in under LiteralConversion (-Wconversion). GCC has it too under -Wconversion, so I think it is fine as is, or? @rsmith https://reviews.llvm.org/D52835 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

Re: [PATCH] D51729: [Tooling] JSONCompilationDatabasePlugin infers compile commands for missing files

2018-10-11 Thread Sam McCall via cfe-commits
Sorry about that. I wasn't familiar with the python bindings. Your bisect is correct, we changed the behavior that test is testing: now an approximate match will be returned. I guess either: - just remove that test (depending on how we feel about smoke-testing vs exhaustively testing wrapperl lik

<    1   2