[PATCH] D133036: [InstCombine] Treat passing undef to noundef params as UB
omjavaid reopened this revision. omjavaid added a comment. This revision is now accepted and ready to land. This change has broken LLDB Arm/AArch64 Linux buildbots. I dont really understand the underlying reason. Reverting for now to make buildbot green. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D133036/new/ https://reviews.llvm.org/D133036 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D133036: [InstCombine] Treat passing undef to noundef params as UB
omjavaid added a comment. Apparently some problem occuring due to trouble with ASAN exception https://lab.llvm.org/buildbot/#/builders/96/builds/28300 Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D133036/new/ https://reviews.llvm.org/D133036 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D131007: [NFCI] Refactor how KeywordStatus is calculated
omjavaid added a comment. This breaks clang causes it to crash in LLDB buildbot testsuite breaking the LLDB buildbot: https://lab.llvm.org/buildbot/#/builders/96/builds/27003 Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D131007/new/ https://reviews.llvm.org/D131007 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D136070: [LIT] Add AArch64/Windows to LP64 feature
This revision was automatically updated to reflect the committed changes. Closed by commit rGedb68a453350: [LIT] Add AArch64/Windows to LP64 feature (authored by omjavaid). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D136070/new/ https://reviews.llvm.org/D136070 Files: clang/test/lit.cfg.py Index: clang/test/lit.cfg.py === --- clang/test/lit.cfg.py +++ clang/test/lit.cfg.py @@ -177,7 +177,7 @@ config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): +if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # Tests that are specific to the Apple Silicon macOS. Index: clang/test/lit.cfg.py === --- clang/test/lit.cfg.py +++ clang/test/lit.cfg.py @@ -177,7 +177,7 @@ config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): +if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # Tests that are specific to the Apple Silicon macOS. ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D136070: [LIT] Add AArch64/Windows to LP64 feature
omjavaid created this revision. Herald added a subscriber: kristof.beyls. Herald added a project: All. omjavaid requested review of this revision. Herald added a project: clang. Herald added a subscriber: cfe-commits. This patch adds AArch64 to the LP64 feature to avoid running LLP64 incompatible test on AArch64/Windows platform. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D136070 Files: clang/test/lit.cfg.py Index: clang/test/lit.cfg.py === --- clang/test/lit.cfg.py +++ clang/test/lit.cfg.py @@ -177,7 +177,7 @@ config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): +if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # Tests that are specific to the Apple Silicon macOS. Index: clang/test/lit.cfg.py === --- clang/test/lit.cfg.py +++ clang/test/lit.cfg.py @@ -177,7 +177,7 @@ config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): +if not re.match(r'^(aarch64|x86_64).*-(windows-msvc|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # Tests that are specific to the Apple Silicon macOS. ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D136844: [libclang] Expose completion result kind in `CXCompletionResult`
omjavaid reopened this revision. omjavaid added a comment. This revision is now accepted and ready to land. Hi this broke https://lab.llvm.org/buildbot/#/builders/245/builds/761 I have reverted the change to make the buildbot green. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D136844/new/ https://reviews.llvm.org/D136844 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D73462: [dwarf-5] Support DebugInfo for Defaulted parameters for C++ templates
omjavaid reopened this revision. omjavaid added a comment. This revision is now accepted and ready to land. This change breaks lldb buildbots here: http://lab.llvm.org:8011/builders/lldb-aarch64-ubuntu/builds/2123 http://lab.llvm.org:8011/builders/lldb-x86_64-debian/builds/5911 Please revisit this. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D73462/new/ https://reviews.llvm.org/D73462 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D65410: [PassManager] First Pass implementation at -O1 pass pipeline
omjavaid reopened this revision. omjavaid added a comment. This revision is now accepted and ready to land. Re-opening this because I have reverted the commit due to failures seen on LLDB AArch64 buildbot with this commit. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D65410/new/ https://reviews.llvm.org/D65410 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits