[llvm-bugs] [Bug 33924] Unexpected error "definition with same mangled name as another definition"
https://bugs.llvm.org/show_bug.cgi?id=33924 Hans Wennborg changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED |--- CC||h...@chromium.org --- Comment #11 from Hans Wennborg --- (In reply to Richard Smith from comment #10) > Landed a different approach in r336021, let's hope it sticks this time. Sorry, I had to revert in r336175 -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 37395] clang crashes on valid code at -O1 and above with debugging enabled: Assertion `!cast(MD)->getNumOperands() && "Expected an empty MDNode"' failed
https://bugs.llvm.org/show_bug.cgi?id=37395 Hsiangkai Wang changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #7 from Hsiangkai Wang --- Fixed in rL336176. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 37651] Assertion `SE->DT.dominates(ENT.ExitingBlock, Latch) && "We should only have known counts for exiting blocks that dominate " "latch!"' failed. with -iv-users -simple-loop-unswi
https://bugs.llvm.org/show_bug.cgi?id=37651 Chandler Carruth changed: What|Removed |Added Status|NEW |RESOLVED CC||chandl...@gmail.com Resolution|--- |FIXED --- Comment #6 from Chandler Carruth --- Sorry for delay landing my re-hash of this fix, but it is now fixed in simple loop unswitch as of r336183. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38008] [llvm-exegesis] Can't test any SSE/AVX instructions on pre-AVX hardware
https://bugs.llvm.org/show_bug.cgi?id=38008 Clement Courbet changed: What|Removed |Added Resolution|--- |FIXED Status|NEW |RESOLVED --- Comment #6 from Clement Courbet --- Fixed by https://reviews.llvm.org/D48820 -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38029] New: Unused code triggers linker failure
https://bugs.llvm.org/show_bug.cgi?id=38029 Bug ID: 38029 Summary: Unused code triggers linker failure Product: clang Version: 6.0 Hardware: Other OS: FreeBSD Status: NEW Severity: enhancement Priority: P Component: C++ Assignee: unassignedclangb...@nondot.org Reporter: adr...@freebsd.org CC: dgre...@apple.com, llvm-bugs@lists.llvm.org This program fails to link (clang6 on FreeBSD): ``` #include static std::string f() { return std::string(); } int main() { (void) f; } ``` The error message is ``` /tmp/t-a76eba.o: In function `f()': t.cpp:(.text+0x20): undefined reference to `std::__1::basic_string, std::__1::allocator >::basic_string()' /usr/bin/ld: a.out: hidden symbol `_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2Ev' isn't defined /usr/bin/ld: final link failed: Nonrepresentable section on output ``` It also fails with clang5 on FreeBSD, on FreeBSDs 11- and 12-, and reportedly on Linux with clang6 and -stdlib=libc++. It doesn't fail with -O1 or above. It doesn't fail if you remove the `(void)f;` statement, although then you will get an unused function warning. Also reported downstream as https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=229479 -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38030] New: [MCSchedModel] Variant class support in computeInstrLatency and getReciprocalThroughput
https://bugs.llvm.org/show_bug.cgi?id=38030 Bug ID: 38030 Summary: [MCSchedModel] Variant class support in computeInstrLatency and getReciprocalThroughput Product: libraries Version: trunk Hardware: PC OS: Windows NT Status: NEW Severity: enhancement Priority: P Component: MC Assignee: unassignedb...@nondot.org Reporter: llvm-...@redking.me.uk CC: andrea.dibia...@gmail.com, atr...@apple.com, clement.cour...@gmail.com, gchate...@google.com, llvm-bugs@lists.llvm.org Blocks: 36550 Both MCSchedModel::computeInstrLatency and MCSchedModel::getReciprocalThroughput are missing support for variant classes from some versions of the methods. They either assert if MCSchedClassDesc.isVariant() or don't take it into account at all (and give some very odd latency/throughput numbers...). This appears to be at least in part to them not always having access to a MCInst instance which prevents them resolving with resolveVariantSchedClass. Some of these methods may be not in use and can be removed, while for others we need some way to resolve the variant to a default (worst case?) sched class. Referenced Bugs: https://bugs.llvm.org/show_bug.cgi?id=36550 [Bug 36550] Derive TTI instruction costs from scheduling models -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38031] New: Unsupported ARM Neon intrinsics in Target-specific DAG combine function for VLDDUP
https://bugs.llvm.org/show_bug.cgi?id=38031 Bug ID: 38031 Summary: Unsupported ARM Neon intrinsics in Target-specific DAG combine function for VLDDUP Product: tools Version: trunk Hardware: Other OS: Linux Status: NEW Keywords: compile-fail, crash-on-invalid Severity: normal Priority: P Component: llc Assignee: ikosa...@accesssoftek.com Reporter: diogo.samp...@arm.com CC: llvm-bugs@lists.llvm.org, sjoerd.mei...@arm.com Created attachment 20511 --> https://bugs.llvm.org/attachment.cgi?id=20511&action=edit LLVM IR that generates crash-on-invalid The new VLDDUP operations inserted in https://reviews.llvm.org/D48439 are not handled in the target-specific DAG combine function. ARMISelLowering.cpp::11443 - CombineBaseUpdate How to reproduce: llc -debug < problem-9bb6ba.ll Combining: t637: ch = TokenFactor t635:3, t636:3 Combining: t636: v4i16,v4i16,v4i16,ch = llvm.arm.neon.vld3lane<(load 24 from %ir.32, align 2)> t634, TargetConstant:i32<1048>, FrameIndex:i32<32>, t635, t635:1, t635:2, Constant:i32<0>, Constant:i32<2> Combining: t635: v4i16,v4i16,v4i16,ch = llvm.arm.neon.vld3dup<(load 24 from %ir.33, align 2)> t634, TargetConstant:i32<1047>, FrameIndex:i32<33>, Constant:i32<2> unexpected intrinsic for Neon base update UNREACHABLE executed at /work/bf/LLVM/local/src/lib/Target/ARM/ARMISelLowering.cpp:11483! -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38032] New: undefined reference in .debug_info with a template static constexpr array
https://bugs.llvm.org/show_bug.cgi?id=38032 Bug ID: 38032 Summary: undefined reference in .debug_info with a template static constexpr array Product: clang Version: trunk Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P Component: -New Bugs Assignee: unassignedclangb...@nondot.org Reporter: blastr...@free.fr CC: llvm-bugs@lists.llvm.org Created attachment 20512 --> https://bugs.llvm.org/attachment.cgi?id=20512&action=edit minimal example In the attached example, linking fails with clang trunk with the -g switch: /tmp/t-1d6fe7.o:(.debug_info+0x66): undefined reference to `_u::_t::_literal' clang: error: linker command failed with exit code 1 (use -v to see invocation) The symbol is actually defined on line 51. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38034] New: 3 libfuzzer tests hanging on aarch64 (buildbot failing)
https://bugs.llvm.org/show_bug.cgi?id=38034 Bug ID: 38034 Summary: 3 libfuzzer tests hanging on aarch64 (buildbot failing) Product: compiler-rt Version: unspecified Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P Component: fuzzer Assignee: unassignedb...@nondot.org Reporter: peter.sm...@linaro.org CC: llvm-bugs@lists.llvm.org Our full buildbot http://lab.llvm.org:8011/builders/clang-cmake-aarch64-full/ is currently failing when doing check-all due to some libfuzzer tests hanging. Unfortunately the log from the buildbot is not very helpful: "command timed out: 1200 seconds without output running ['ninja', 'check-all'], attempting to kill process killed by signal 9 program finished with exit code -1 elapsedTime=6802.629094" Running the libfuzzer tests on a Ubuntu 16.04 aarch64 machine results in the following tests that seem to hang: countertest.test fuzzer-oom.test disable-leaks.test I've taken a look at countertest.test in a bit more detail as this doesn't have any dependency on other sanitizers or memory allocation. When I run countertest.test on my Ubuntu 16.04 X86 box I very quickly get: INFO: Seed: 1 INFO: Loaded 1 modules (53 inline 8-bit counters): 53 [0x7e6f00, 0x7e6f35), INFO: Loaded 1 PC tables (53 PCs): 53 [0x5aaed0,0x5ab220), INFO: A corpus is not provided, starting from an empty corpus #2 INITED cov: 4 ft: 5 corp: 1/1b lim: 4 exec/s: 0 rss: 26Mb #10 NEWcov: 8 ft: 9 corp: 2/3b lim: 4 exec/s: 0 rss: 27Mb L: 2/2 MS: 3 CopyPart-ChangeBit-InsertByte- #15 NEWcov: 9 ft: 12 corp: 3/7b lim: 4 exec/s: 0 rss: 27Mb L: 4/4 MS: 5 CopyPart-ShuffleBytes-ShuffleBytes-InsertByte-CrossOver- #1029 NEWcov: 10 ft: 13 corp: 4/11b lim: 4 exec/s: 0 rss: 27Mb L: 4/4 MS: 4 ChangeBinInt-CopyPart-ChangeByte-CrossOver- #1047 REDUCE cov: 10 ft: 13 corp: 4/10b lim: 4 exec/s: 0 rss: 27Mb L: 3/4 MS: 3 CopyPart-CopyPart-EraseBytes- #1088 REDUCE cov: 10 ft: 13 corp: 4/9b lim: 4 exec/s: 0 rss: 27Mb L: 2/4 MS: 1 EraseBytes- #1125 REDUCE cov: 11 ft: 14 corp: 5/10b lim: 4 exec/s: 0 rss: 27Mb L: 1/4 MS: 2 ShuffleBytes-EraseBytes- #1338 REDUCE cov: 11 ft: 15 corp: 6/14b lim: 4 exec/s: 0 rss: 27Mb L: 4/4 MS: 3 InsertByte-CopyPart-ChangeBinInt- #1764 REDUCE cov: 12 ft: 16 corp: 7/16b lim: 4 exec/s: 0 rss: 27Mb L: 2/4 MS: 1 ChangeByte- #3772 NEWcov: 12 ft: 19 corp: 8/22b lim: 6 exec/s: 0 rss: 27Mb L: 6/6 MS: 3 CMP-InsertByte-InsertByte- DE: "seed"- #18577 NEWcov: 12 ft: 20 corp: 9/28b lim: 6 exec/s: 0 rss: 28Mb L: 6/6 MS: 5 CrossOver-ShuffleBytes-ChangeBit-ChangeByte-ChangeBit- BINGO! When I run on aarch64 I get: INFO: Seed: 1 INFO: Loaded 1 modules (12 inline 8-bit counters): 12 [0x609080, 0x60908c), INFO: Loaded 1 PC tables (12 PCs): 12 [0x5c6b40,0x5c6c00), INFO: A corpus is not provided, starting from an empty corpus #2 INITED cov: 4 ft: 6 corp: 1/1b lim: 4 exec/s: 0 rss: 30Mb #10 NEWcov: 4 ft: 7 corp: 2/3b lim: 4 exec/s: 0 rss: 30Mb L: 2/2 MS: 3 CopyPart-ChangeBit-InsertByte- #14 NEWcov: 5 ft: 8 corp: 3/6b lim: 4 exec/s: 0 rss: 30Mb L: 3/3 MS: 4 CopyPart-ShuffleBytes-ShuffleBytes-InsertByte- #17 NEWcov: 5 ft: 9 corp: 4/10b lim: 4 exec/s: 0 rss: 31Mb L: 4/4 MS: 3 InsertByte-EraseBytes-CrossOver- #2029 NEWcov: 5 ft: 10 corp: 5/16b lim: 6 exec/s: 0 rss: 31Mb L: 6/6 MS: 2 CopyPart-CrossOver- #6660 NEWcov: 6 ft: 11 corp: 6/17b lim: 6 exec/s: 0 rss: 31Mb L: 1/6 MS: 1 ChangeByte- #1048576pulse cov: 6 ft: 11 corp: 6/17b lim: 6 exec/s: 349525 rss: 78Mb #2097152pulse cov: 6 ft: 11 corp: 6/17b lim: 6 exec/s: 349525 rss: 125Mb #4194304pulse cov: 6 ft: 11 corp: 6/17b lim: 6 exec/s: 349525 rss: 219Mb #8388608pulse cov: 6 ft: 11 corp: 6/17b lim: 6 exec/s: 335544 rss: 408Mb #16777216 pulse cov: 6 ft: 11 corp: 6/17b lim: 6 exec/s: 328965 rss: 785Mb ... The pulses continue but at a much slower rate. When I print out the printable characters in the output they don't seem to be varying much from: " ((h( (((h( (((h( (((h( 0 U0 U0 U0( U10( ((( T(( T(%( " curiously the timeout feature doesn't appear to work reliably, I have sometimes managed to get it to trigger when backgrounding and foregrounding the test. This is about as far as I've been able to get without much knowledge of libfuzzer. To me it looks like there are a couple of problems: - The test doesn't look like it is anywhere close to converging on the output even after running for 30 minutes - The timeout feature isn't working which is terminating the whole test run. Would it be possible to investigate? If I mark the three tests as UNSUPPORTED on aarch64 then the libfuzzer tests will complete. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llv
[llvm-bugs] [Bug 38036] New: ShuffleVectorInst - match shuffle masks with different src/dst vector widths
https://bugs.llvm.org/show_bug.cgi?id=38036 Bug ID: 38036 Summary: ShuffleVectorInst - match shuffle masks with different src/dst vector widths Product: libraries Version: trunk Hardware: PC OS: Windows NT Status: NEW Severity: enhancement Priority: P Component: Common Code Generator Code Assignee: unassignedb...@nondot.org Reporter: llvm-...@redking.me.uk CC: a.bat...@hotmail.com, llvm-bugs@lists.llvm.org, spatel+l...@rotateright.com The ShuffleVectorInst shuffle matching helpers assume that the src/dst vector widths are the same (== Mask.size()). We need to generalize this to support src vector types that are different to the Mask/dst sizes. This would then allow us to refactor SLPVectorizer's isShuffle function to use the matchers more generally. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38037] New: relocation R_X86_64_PC32 out of range error
https://bugs.llvm.org/show_bug.cgi?id=38037 Bug ID: 38037 Summary: relocation R_X86_64_PC32 out of range error Product: lld Version: unspecified Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P Component: ELF Assignee: unassignedb...@nondot.org Reporter: shivarama@amd.com CC: llvm-bugs@lists.llvm.org Created attachment 20516 --> https://bugs.llvm.org/attachment.cgi?id=20516&action=edit attachment files lld is unable to link the object files compiled for omp2012 357.bt331. However the gnu ld linker is linking the object files. the attachment contains the object files generated and the link command "buildme". the lld aborts with the following error. ld.lld: error: crtstuff.c:(.text+0x82): relocation R_X86_64_PC32 out of range: 11466212385 is not in [-2147483648, 2147483647] ld.lld: error: crtstuff.c:(.text+0x95): relocation R_X86_64_PC32 out of range: 11466212366 is not in [-2147483648, 2147483647] the source file x_solve.o might be the cause of the problem. the source code has a huge array declaration. 4 .tbss 0006d720 1a20 2**5 ALLOC, THREAD_LOCAL At this point I am not sure if it is lld bug. If not, what is the correct way to overcome this linking issue -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38038] New: Transformation forms a non-viable shift node.
https://bugs.llvm.org/show_bug.cgi?id=38038 Bug ID: 38038 Summary: Transformation forms a non-viable shift node. Product: libraries Version: trunk Hardware: Macintosh OS: MacOS X Status: NEW Severity: normal Priority: P Component: Scalar Optimizations Assignee: unassignedb...@nondot.org Reporter: sca...@apple.com CC: llvm-bugs@lists.llvm.org $ cat c.ll define i8 @crash(half) { entry: %1 = bitcast half %0 to i16 %.lobit = lshr i16 %1, 15 %2 = trunc i16 %.lobit to i8 ret i8 %2 } $ build01/llvm-macosx-x86_64/bin/llc c.ll Assertion failed: (VT == N1.getValueType() && "Shift operators return type must be the same as their first arg"), function getNode, file /Users/arnold/Github/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp, line 4351. Apparent root cause of https://bugs.swift.org/browse/SR-7763 -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 37976] Allow '||' inside of ASSERT expressions
https://bugs.llvm.org/show_bug.cgi?id=37976 George Rimar changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |FIXED CC||gri...@accesssoftek.com --- Comment #1 from George Rimar --- r336197 -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 7555 in oss-fuzz: llvm/clang-fuzzer: ASSERT: !isTokenSpecial() && "Should consume special tokens with Consume*Token"
Updates: Labels: Deadline-Approaching Comment #2 on issue 7555 by sheriff...@chromium.org: llvm/clang-fuzzer: ASSERT: !isTokenSpecial() && "Should consume special tokens with Consume*Token" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7555#c2 This bug is approaching its deadline for being fixed, and will be automatically derestricted within 7 days. If a fix is planned within 2 weeks after the deadline has passed, a grace extension can be granted. - Your friendly Sheriffbot -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 7560 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-loop_vectorize: Heap-use-after-free in llvm::LoopVectorizationCostModel::setCostBasedWideningDecision
Updates: Labels: Deadline-Approaching Comment #3 on issue 7560 by sheriff...@chromium.org: llvm/llvm-opt-fuzzer--x86_64-loop_vectorize: Heap-use-after-free in llvm::LoopVectorizationCostModel::setCostBasedWideningDecision https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7560#c3 This bug is approaching its deadline for being fixed, and will be automatically derestricted within 7 days. If a fix is planned within 2 weeks after the deadline has passed, a grace extension can be granted. - Your friendly Sheriffbot -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38040] New: DEFINED doesn't work with the conditional operator
https://bugs.llvm.org/show_bug.cgi?id=38040 Bug ID: 38040 Summary: DEFINED doesn't work with the conditional operator Product: lld Version: unspecified Hardware: PC OS: All Status: NEW Severity: normal Priority: P Component: ELF Assignee: unassignedb...@nondot.org Reporter: roy...@freebsd.org CC: llvm-bugs@lists.llvm.org Hello, The following construct: foo = DEFINED(foo) ? foo : .; Doesn't work with ld: ld: error: script.lds:2: symbol not found: foo This is one of the usages of the DEFINED builtin functions from the GNU ld manual at: https://sourceware.org/binutils/docs/ld/Builtin-Functions.html Here are the steps in order to reproduce: $ cat script.lds SECTIONS { foo = DEFINED(foo) ? foo : .; } $ touch foo.c $ cc -c foo.c -o foo.o $ ld -T script.lds foo.o ld: error: script.lds:2: symbol not found: foo -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 9239 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-sccp: Heap-use-after-free in SCCPSolver::visitCmpInst
Status: New Owner: CC: k...@google.com, masc...@google.com, jdevlieg...@apple.com, igm...@gmail.com, llvm-b...@lists.llvm.org, j...@chromium.org, v...@apple.com, mitchphi...@outlook.com, xpl...@gmail.com, akils...@apple.com Labels: ClusterFuzz Stability-Memory-AddressSanitizer Reproducible Engine-libfuzzer Proj-llvm Reported-2018-07-03 Type: Bug-Security New issue 9239 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-sccp: Heap-use-after-free in SCCPSolver::visitCmpInst https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9239 Detailed report: https://oss-fuzz.com/testcase?key=5747454174560256 Project: llvm Fuzzer: libFuzzer_llvm_llvm-opt-fuzzer--x86_64-sccp Fuzz target binary: llvm-opt-fuzzer--x86_64-sccp Job Type: libfuzzer_asan_llvm Platform Id: linux Crash Type: Heap-use-after-free READ 8 Crash Address: 0x61908968 Crash State: SCCPSolver::visitCmpInst llvm::InstVisitor::visit SCCPSolver::Solve Sanitizer: address (ASAN) Recommended Security Severity: High Regressed: https://oss-fuzz.com/revisions?job=libfuzzer_asan_llvm&range=201807020801:201807030756 Reproducer Testcase: https://oss-fuzz.com/download?testcase_id=5747454174560256 Issue filed automatically. See https://github.com/google/oss-fuzz/blob/master/docs/reproducing.md for more information. When you fix this bug, please * mention the fix revision(s). * state whether the bug was a short-lived regression or an old bug in any stable releases. * add any other useful information. This information can help downstream consumers. If you need to contact the OSS-Fuzz team with a question, concern, or any other feedback, please file an issue at https://github.com/google/oss-fuzz/issues. -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 35719] simple c compile fail to webassembly
https://bugs.llvm.org/show_bug.cgi?id=35719 Derek Schuff changed: What|Removed |Added Resolution|--- |FIXED Status|NEW |RESOLVED --- Comment #4 from Derek Schuff --- --target=wasm32-none-none-wasm is now the default, (and the previous default using ELF-style assembly, will be removed soon). Since you filed the bug, we have also finished lld support for wasm object files. Since you indicated that there was no error using the -wasm flavor triple, I'm going to close this bug, but feel free to re-open if there's still an issue. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38043] New: Explicit array initialization in an initializer list
https://bugs.llvm.org/show_bug.cgi?id=38043 Bug ID: 38043 Summary: Explicit array initialization in an initializer list Product: clang Version: unspecified Hardware: PC OS: Windows NT Status: NEW Severity: enhancement Priority: P Component: C++ Assignee: unassignedclangb...@nondot.org Reporter: zahira.ammarguel...@intel.com CC: dgre...@apple.com, llvm-bugs@lists.llvm.org Let's consider this test case: #include struct foo { int i; foo() : i(23) {} }; struct goo { goo() {} goo(const goo & other); foo _lala[2]; }; goo::goo(const goo & other) : _lala(other._lala) { } int main() { goo z; if (z._lala[0].i == 23) puts("passed"); else puts("failed"); return 0; } GCC compiles this. CL and CLANG both generate an error. Clang's error message is: error: array initializer must be an initializer list If the community doesn't want to follow GCC and allow array initialization via an initializer list (violation of C++), then clang should at least return the right error message as this is misleading? -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 9240 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: *C2 != 0 && "udiv 0, X should have been simplified already."
Status: New Owner: CC: k...@google.com, masc...@google.com, jdevlieg...@apple.com, igm...@gmail.com, llvm-b...@lists.llvm.org, j...@chromium.org, v...@apple.com, mitchphi...@outlook.com, xpl...@gmail.com, akils...@apple.com Labels: ClusterFuzz Stability-Memory-AddressSanitizer Reproducible Engine-libfuzzer Proj-llvm Reported-2018-07-03 Type: Bug New issue 9240 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: *C2 != 0 && "udiv 0, X should have been simplified already." https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9240 Detailed report: https://oss-fuzz.com/testcase?key=5978732861849600 Project: llvm Fuzzer: libFuzzer_llvm_llvm-opt-fuzzer--x86_64-instcombine Fuzz target binary: llvm-opt-fuzzer--x86_64-instcombine Job Type: libfuzzer_asan_llvm Platform Id: linux Crash Type: ASSERT Crash Address: Crash State: *C2 != 0 && "udiv 0, X should have been simplified already." llvm::InstCombiner::foldICmpUDivConstant llvm::InstCombiner::foldICmpInstWithConstant Sanitizer: address (ASAN) Regressed: https://oss-fuzz.com/revisions?job=libfuzzer_asan_llvm&range=201807020801:201807030756 Reproducer Testcase: https://oss-fuzz.com/download?testcase_id=5978732861849600 Issue filed automatically. See https://github.com/google/oss-fuzz/blob/master/docs/reproducing.md for more information. When you fix this bug, please * mention the fix revision(s). * state whether the bug was a short-lived regression or an old bug in any stable releases. * add any other useful information. This information can help downstream consumers. If you need to contact the OSS-Fuzz team with a question, concern, or any other feedback, please file an issue at https://github.com/google/oss-fuzz/issues. -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38022] clang-cl -m32 crashes in MultiByteToWideChar on Windows
https://bugs.llvm.org/show_bug.cgi?id=38022 Zachary Turner changed: What|Removed |Added Resolution|--- |FIXED Status|NEW |RESOLVED --- Comment #2 from Zachary Turner --- Should be fixed in r336219. Thanks for the report. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 38044] New: clang fails to deduce the most specialized template definition when it's partialy specialized with multiple template template parameters
https://bugs.llvm.org/show_bug.cgi?id=38044 Bug ID: 38044 Summary: clang fails to deduce the most specialized template definition when it's partialy specialized with multiple template template parameters Product: clang Version: trunk Hardware: PC OS: Windows NT Status: NEW Severity: normal Priority: P Component: C++ Assignee: unassignedclangb...@nondot.org Reporter: michaelroyn...@gmail.com CC: dgre...@apple.com, llvm-bugs@lists.llvm.org I was doing simple metaprogramming recently and wanted to code the "front" helper: get the first type of a type list. So I experimented on wandbox this code : #include template struct type_list { static constexpr std::size_t size = sizeof...(Ts); }; template struct front {}; template class List, typename T, typename... Ts> struct front, std::enable_if_t<(List::size > 0)>> { using type = T; }; template using front_t = typename front::type; There's nothing fancy (Please let me know if the code above is not legal C++). Usage is : static_assert(std::is_same_v>>); The problem is when I'm specializing with a template template like this : template class List Then clang throws it away and doesn't find anything. However, if I specialize only with : template class List Then it's fine and clang doesn't throw it away (but it's not ok because I can't do what I want to do this way). I think clang is wrong here and should consider this specialization. It consistently fails since clang 4.0 haven't tested the version before) up until trunk. FWIW, both gcc and msvc compile it just fine. Here's a godbolt repro : https://godbolt.org/g/M5fgbj Please let me know if what I'm writing is not legal C++. -- You are receiving this mail because: You are on the CC list for the bug.___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3134 in oss-fuzz: llvm: ASSERT: ParmVarDeclBits.ScopeDepthOrObjCQuals == scopeDepth && "truncation!"
Updates: Cc: eney...@google.com Comment #16 on issue 3134 by ClusterFuzz-External: llvm: ASSERT: ParmVarDeclBits.ScopeDepthOrObjCQuals == scopeDepth && "truncation!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3134#c16 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3146 in oss-fuzz: llvm: ASSERT: Access != AS_none && "Access specifier is AS_none inside a record decl"
Updates: Cc: eney...@google.com Comment #14 on issue 3146 by ClusterFuzz-External: llvm: ASSERT: Access != AS_none && "Access specifier is AS_none inside a record decl" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3146#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3133 in oss-fuzz: llvm: ASSERT: DelayedTypos.empty() && "Uncorrected typos!"
Updates: Cc: eney...@google.com Comment #18 on issue 3133 by ClusterFuzz-External: llvm: ASSERT: DelayedTypos.empty() && "Uncorrected typos!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3133#c18 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3155 in oss-fuzz: llvm: ASSERT: CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc() && "The a
Updates: Cc: eney...@google.com Comment #14 on issue 3155 by ClusterFuzz-External: llvm: ASSERT: CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc() && "The a https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3155#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3161 in oss-fuzz: llvm: ASSERT: ResultKind != Found || Decls.size() == 1
Updates: Cc: eney...@google.com Comment #14 on issue 3161 by ClusterFuzz-External: llvm: ASSERT: ResultKind != Found || Decls.size() == 1 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3161#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3213 in oss-fuzz: llvm: ASSERT: !Prev.isAmbiguous() && "Cannot have an ambiguity in previous-declaration lookup"
Updates: Cc: eney...@google.com Comment #14 on issue 3213 by ClusterFuzz-External: llvm: ASSERT: !Prev.isAmbiguous() && "Cannot have an ambiguity in previous-declaration lookup" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3213#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3157 in oss-fuzz: llvm: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer"
Updates: Cc: eney...@google.com Comment #14 on issue 3157 by ClusterFuzz-External: llvm: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3157#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3163 in oss-fuzz: llvm: ASSERT: Tok.is(tok::eof) && Tok.getEofData() == AttrEnd.getEofData()
Updates: Cc: eney...@google.com Comment #14 on issue 3163 by ClusterFuzz-External: llvm: ASSERT: Tok.is(tok::eof) && Tok.getEofData() == AttrEnd.getEofData() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3163#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3171 in oss-fuzz: llvm: ASSERT: RHS.U.VAL != 0 && "Divide by zero?"
Updates: Cc: eney...@google.com Comment #14 on issue 3171 by ClusterFuzz-External: llvm: ASSERT: RHS.U.VAL != 0 && "Divide by zero?" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3171#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3236 in oss-fuzz: llvm: Abrt in llvm::report_bad_alloc_error
Updates: Cc: eney...@google.com Comment #17 on issue 3236 by ClusterFuzz-External: llvm: Abrt in llvm::report_bad_alloc_error https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3236#c17 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3168 in oss-fuzz: llvm: ASSERT: Access == AS_private || Access == AS_protected
Updates: Cc: eney...@google.com Comment #14 on issue 3168 by ClusterFuzz-External: llvm: ASSERT: Access == AS_private || Access == AS_protected https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3168#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3194 in oss-fuzz: llvm: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #14 on issue 3194 by ClusterFuzz-External: llvm: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3194#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3178 in oss-fuzz: llvm: ASSERT: !CodeSynthesisContexts.empty()
Updates: Cc: eney...@google.com Comment #14 on issue 3178 by ClusterFuzz-External: llvm: ASSERT: !CodeSynthesisContexts.empty() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3178#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3169 in oss-fuzz: llvm: ASSERT: RHS.U.VAL != 0 && "Divide by zero?"
Updates: Cc: eney...@google.com Comment #14 on issue 3169 by ClusterFuzz-External: llvm: ASSERT: RHS.U.VAL != 0 && "Divide by zero?" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3169#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3211 in oss-fuzz: llvm: Stack-overflow in clang::StmtVisitorBase::Visit
Updates: Cc: eney...@google.com Comment #14 on issue 3211 by ClusterFuzz-External: llvm: Stack-overflow in clang::StmtVisitorBase::Visit https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3211#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3239 in oss-fuzz: llvm: ASSERT: getContainingDC(DC) == CurContext && "The next DeclContext should be lexically c
Updates: Cc: eney...@google.com Comment #14 on issue 3239 by ClusterFuzz-External: llvm: ASSERT: getContainingDC(DC) == CurContext && "The next DeclContext should be lexically c https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3239#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3192 in oss-fuzz: llvm: ASSERT: Result.isInvalid() && "C++ binary operator overloading is missing candidates!"
Updates: Cc: eney...@google.com Comment #14 on issue 3192 by ClusterFuzz-External: llvm: ASSERT: Result.isInvalid() && "C++ binary operator overloading is missing candidates!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3192#c14 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3195 in oss-fuzz: llvm: Direct-leak in clang::Parser::ParseParameterDeclarationClause
Updates: Cc: eney...@google.com Comment #17 on issue 3195 by ClusterFuzz-External: llvm: Direct-leak in clang::Parser::ParseParameterDeclarationClause https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3195#c17 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3369 in oss-fuzz: llvm: Out-of-memory in llvm_clang-format-fuzzer
Updates: Cc: eney...@google.com Comment #10 on issue 3369 by ClusterFuzz-External: llvm: Out-of-memory in llvm_clang-format-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3369#c10 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3676 in oss-fuzz: llvm/clang-format-fuzzer: ASSERT: PPBranchLevel < (int)PPLevelBranchIndex.size()
Updates: Cc: eney...@google.com Comment #9 on issue 3676 by ClusterFuzz-External: llvm/clang-format-fuzzer: ASSERT: PPBranchLevel < (int)PPLevelBranchIndex.size() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3676#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3382 in oss-fuzz: llvm: Null-dereference READ in clang::format::AnnotatingParser::consumeToken
Updates: Cc: eney...@google.com Comment #10 on issue 3382 by ClusterFuzz-External: llvm: Null-dereference READ in clang::format::AnnotatingParser::consumeToken https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3382#c10 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3649 in oss-fuzz: llvm: Stack-overflow in clang::Parser::SkipUntil
Updates: Cc: eney...@google.com Comment #9 on issue 3649 by ClusterFuzz-External: llvm: Stack-overflow in clang::Parser::SkipUntil https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3649#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3549 in oss-fuzz: ASSERT: Changes[i - 1].OriginalWhitespaceRange.getBegin() != C.OriginalWhitespaceRange.g
Updates: Cc: eney...@google.com Comment #10 on issue 3549 by ClusterFuzz-External: ASSERT: Changes[i - 1].OriginalWhitespaceRange.getBegin() != C.OriginalWhitespaceRange.g https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3549#c10 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3370 in oss-fuzz: llvm: ASSERT: getClient() && "DiagnosticClient not set!"
Updates: Cc: eney...@google.com Comment #13 on issue 3370 by ClusterFuzz-External: llvm: ASSERT: getClient() && "DiagnosticClient not set!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3370#c13 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3353 in oss-fuzz: llvm: ASSERT: CodeDC && !CodeDC->isFileContext() && "statement expr not in code context"
Updates: Cc: eney...@google.com Comment #10 on issue 3353 by ClusterFuzz-External: llvm: ASSERT: CodeDC && !CodeDC->isFileContext() && "statement expr not in code context" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3353#c10 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3264 in oss-fuzz: llvm: ASSERT: Ancestor->getEntity() == CurContext && "ancestor context mismatch"
Updates: Cc: eney...@google.com Comment #12 on issue 3264 by ClusterFuzz-External: llvm: ASSERT: Ancestor->getEntity() == CurContext && "ancestor context mismatch" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3264#c12 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3737 in oss-fuzz: llvm/clang-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #9 on issue 3737 by ClusterFuzz-External: llvm/clang-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3737#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3764 in oss-fuzz: llvm/clang-fuzzer: ASSERT: ClassDecl->hasFlexibleArrayMember() && "Incomplete array type is not valid"
Updates: Cc: eney...@google.com Comment #9 on issue 3764 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: ClassDecl->hasFlexibleArrayMember() && "Incomplete array type is not valid" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3764#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3740 in oss-fuzz: llvm/clang-fuzzer: ASSERT: cast(SubExpr)->getQualifier() && "fixed to a member ref with no nes
Updates: Cc: eney...@google.com Comment #9 on issue 3740 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: cast(SubExpr)->getQualifier() && "fixed to a member ref with no nes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3740#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4192 in oss-fuzz: llvm/llvm-special-case-list-fuzzer: Heap-buffer-overflow in p_ere
Updates: Cc: eney...@google.com Comment #9 on issue 4192 by ClusterFuzz-External: llvm/llvm-special-case-list-fuzzer: Heap-buffer-overflow in p_ere https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4192#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4278 in oss-fuzz: llvm/clang-format-fuzzer: ASSERT: (TokenText.startswith("//") || TokenText.startswith("#")) && "unsupported line c
Updates: Cc: eney...@google.com Comment #9 on issue 4278 by ClusterFuzz-External: llvm/clang-format-fuzzer: ASSERT: (TokenText.startswith("//") || TokenText.startswith("#")) && "unsupported line c https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4278#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3979 in oss-fuzz: llvm/clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer"
Updates: Cc: eney...@google.com Comment #8 on issue 3979 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3979#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4125 in oss-fuzz: llvm/llvm-special-case-list-fuzzer: Heap-buffer-overflow in p_ere
Updates: Cc: eney...@google.com Comment #8 on issue 4125 by ClusterFuzz-External: llvm/llvm-special-case-list-fuzzer: Heap-buffer-overflow in p_ere https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4125#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4063 in oss-fuzz: llvm/clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!"
Updates: Cc: eney...@google.com Comment #8 on issue 4063 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4063#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4237 in oss-fuzz: llvm: Stack-overflow in p_ere
Updates: Cc: eney...@google.com Comment #9 on issue 4237 by ClusterFuzz-External: llvm: Stack-overflow in p_ere https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4237#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4081 in oss-fuzz: llvm/clang-format-fuzzer: ASSERT: idx < size()
Updates: Cc: eney...@google.com Comment #8 on issue 4081 by ClusterFuzz-External: llvm/clang-format-fuzzer: ASSERT: idx < size() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4081#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4176 in oss-fuzz: llvm/llvm-special-case-list-fuzzer: Heap-buffer-overflow in llvm_regcomp
Updates: Cc: eney...@google.com Comment #8 on issue 4176 by ClusterFuzz-External: llvm/llvm-special-case-list-fuzzer: Heap-buffer-overflow in llvm_regcomp https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4176#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 3705 in oss-fuzz: llvm/clang-fuzzer: ASSERT: getResultKind() == Found && "getFoundDecl called on non-unique result"
Updates: Cc: eney...@google.com Comment #10 on issue 3705 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: getResultKind() == Found && "getFoundDecl called on non-unique result" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3705#c10 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4189 in oss-fuzz: llvm/clang-format-fuzzer: Null-dereference READ in clang::format::TokenAnnotator::splitPenalty
Updates: Cc: eney...@google.com Comment #9 on issue 4189 by ClusterFuzz-External: llvm/clang-format-fuzzer: Null-dereference READ in clang::format::TokenAnnotator::splitPenalty https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4189#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4656 in oss-fuzz: llvm/clang-fuzzer: Out-of-memory in llvm_clang-fuzzer
Updates: Cc: eney...@google.com Comment #8 on issue 4656 by ClusterFuzz-External: llvm/clang-fuzzer: Out-of-memory in llvm_clang-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4656#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4599 in oss-fuzz: llvm/clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!"
Updates: Cc: eney...@google.com Comment #9 on issue 4599 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4599#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4558 in oss-fuzz: llvm/clang-format-fuzzer: ASSERT: NewRemainingTokenColumns < RemainingTokenColumns
Updates: Cc: eney...@google.com Comment #9 on issue 4558 by ClusterFuzz-External: llvm/clang-format-fuzzer: ASSERT: NewRemainingTokenColumns < RemainingTokenColumns https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4558#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4608 in oss-fuzz: llvm/clang-fuzzer: Stack-overflow in clang::Parser::ParseDeclaratorInternal
Updates: Cc: eney...@google.com Comment #7 on issue 4608 by ClusterFuzz-External: llvm/clang-fuzzer: Stack-overflow in clang::Parser::ParseDeclaratorInternal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4608#c7 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4537 in oss-fuzz: llvm/clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!"
Updates: Cc: eney...@google.com Comment #9 on issue 4537 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4537#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4574 in oss-fuzz: llvm/clang-fuzzer: ASSERT: !E->isArrow() && "missing call to bound member function?"
Updates: Cc: eney...@google.com Comment #9 on issue 4574 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: !E->isArrow() && "missing call to bound member function?" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4574#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4586 in oss-fuzz: llvm/clang-fuzzer: ASSERT: 0 && "Invalid SLocOffset or bad function choice"
Updates: Cc: eney...@google.com Comment #9 on issue 4586 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: 0 && "Invalid SLocOffset or bad function choice" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4586#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4604 in oss-fuzz: llvm/clang-fuzzer: ASSERT: (data().DefaultedCopyConstructorIsDeleted || needsOverloadResolutionForCopyConst
Updates: Cc: eney...@google.com Comment #8 on issue 4604 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: (data().DefaultedCopyConstructorIsDeleted || needsOverloadResolutionForCopyConst https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4604#c8 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4619 in oss-fuzz: llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #9 on issue 4619 by ClusterFuzz-External: llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4619#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4575 in oss-fuzz: llvm/clang-fuzzer: ASSERT: DD && "queried property of class with no definition"
Updates: Cc: eney...@google.com Comment #9 on issue 4575 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: DD && "queried property of class with no definition" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4575#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4565 in oss-fuzz: llvm/clangd-fuzzer: Stack-overflow in clang::clangd::json::Parser::parseExpr
Updates: Cc: eney...@google.com Comment #9 on issue 4565 by ClusterFuzz-External: llvm/clangd-fuzzer: Stack-overflow in clang::clangd::json::Parser::parseExpr https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4565#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4702 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-gisel: Direct-leak in llvm::BitcodeReaderValueList::getValueFwdRef
Updates: Cc: eney...@google.com Comment #9 on issue 4702 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-gisel: Direct-leak in llvm::BitcodeReaderValueList::getValueFwdRef https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4702#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4704 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-gisel: Abrt in handleLLVMFatalError
Updates: Cc: eney...@google.com Comment #9 on issue 4704 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-gisel: Abrt in handleLLVMFatalError https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4704#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4699 in oss-fuzz: llvm/clang-format-fuzzer: ASSERT: IndentLevel > 0
Updates: Cc: eney...@google.com Comment #6 on issue 4699 by ClusterFuzz-External: llvm/clang-format-fuzzer: ASSERT: IndentLevel > 0 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4699#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4701 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: Direct-leak in llvm::MDTuple::getImpl
Updates: Cc: eney...@google.com Comment #9 on issue 4701 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--x86_64-O2: Direct-leak in llvm::MDTuple::getImpl https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4701#c9 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4712 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: TRI.getRegSizeInBits(*getRegClass(DstReg)) == TRI.getRegSizeInBits(*getRegClass(
Updates: Cc: eney...@google.com Comment #6 on issue 4712 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: TRI.getRegSizeInBits(*getRegClass(DstReg)) == TRI.getRegSizeInBits(*getRegClass( https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4712#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4705 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: ASSERT: LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!"
Updates: Cc: eney...@google.com Comment #6 on issue 4705 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--x86_64-O2: ASSERT: LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4705#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4706 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: VSTOffset == 0 || !F->hasName()
Updates: Cc: eney...@google.com Comment #6 on issue 4706 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: VSTOffset == 0 | | !F->hasName() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4706#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4714 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: Offset <= INT_MAX && "Offset too big to fit in int."
Updates: Cc: eney...@google.com Comment #6 on issue 4714 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: Offset <= INT_MAX && "Offset too big to fit in int." https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4714#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4717 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: Out-of-memory in llvm_llvm-isel-fuzzer--aarch64-O2
Updates: Cc: eney...@google.com Comment #6 on issue 4717 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: Out-of-memory in llvm_llvm-isel-fuzzer--aarch64-O2 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4717#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4751 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #6 on issue 4751 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4751#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4755 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: I.use_empty() && "Cannot erase instruction that is used!"
Updates: Cc: eney...@google.com Comment #6 on issue 4755 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: I.use_empty() && "Cannot erase instruction that is used!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4755#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4719 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-instcombine: Out-of-memory in llvm_llvm-opt-fuzzer--x86_64-instcombine
Updates: Cc: eney...@google.com Comment #6 on issue 4719 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-instcombine: Out-of-memory in llvm_llvm-opt-fuzzer--x86_64-instcombine https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4719#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4749 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: LHS.getValueType() == MVT::f16 || LHS.getValueType() == MVT::f32 || LHS.getValue
Updates: Cc: eney...@google.com Comment #6 on issue 4749 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: LHS.getValueType() == MVT::f16 | | LHS.getValueType() == MVT::f32 || LHS.getValue https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4749#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4770 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: isa(Val) && "cast() argument of incompatible type!"
Updates: Cc: eney...@google.com Comment #6 on issue 4770 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: isa(Val) && "cast() argument of incompatible type!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4770#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4978 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-gisel: ASSERT: NumBytes >= 0 && "Negative stack allocation size!?"
Updates: Cc: eney...@google.com Comment #5 on issue 4978 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-gisel: ASSERT: NumBytes >= 0 && "Negative stack allocation size!?" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4978#c5 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4771 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-instcombine: Abrt in llvm-opt-fuzzer.cpp
Updates: Cc: eney...@google.com Comment #6 on issue 4771 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-instcombine: Abrt in llvm-opt-fuzzer.cpp https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4771#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4789 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: ASSERT: (!Is64Bit || isInt<32>((long long)FIOffset + Imm)) && "Requesting 64-bit offset
Updates: Cc: eney...@google.com Comment #6 on issue 4789 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--x86_64-O2: ASSERT: (!Is64Bit || isInt<32>((long long)FIOffset + Imm)) && "Requesting 64-bit offset https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4789#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4805 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #6 on issue 4805 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--x86_64-O2: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4805#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4786 in oss-fuzz: llvm/clang-proto-fuzzer: ASSERT: (isa(ExactNotTaken) || !isa(MaxNotTake
Updates: Cc: eney...@google.com Comment #6 on issue 4786 by ClusterFuzz-External: llvm/clang-proto-fuzzer: ASSERT: (isa(ExactNotTaken) | | !isa(MaxNotTake https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4786#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4988 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #5 on issue 4988 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--x86_64-O2: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4988#c5 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4858 in oss-fuzz: llvm/clang-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #6 on issue 4858 by ClusterFuzz-External: llvm/clang-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4858#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4784 in oss-fuzz: llvm/clang-fuzzer: ASSERT: Kind.getKind() == InitializationKind::IK_Copy || Kind.isExplicitCast() || Kind.g
Updates: Cc: eney...@google.com Comment #6 on issue 4784 by ClusterFuzz-External: llvm/clang-fuzzer: ASSERT: Kind.getKind() == InitializationKind::IK_Copy || Kind.isExplicitCast() || Kind.g https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4784#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4787 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: isa(Val) && "cast() argument of incompatible type!"
Updates: Cc: eney...@google.com Comment #6 on issue 4787 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: isa(Val) && "cast() argument of incompatible type!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4787#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4748 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: i < ValuePtrs.size()
Updates: Cc: eney...@google.com Comment #6 on issue 4748 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: i < ValuePtrs.size() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4748#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4740 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: eney...@google.com Comment #6 on issue 4740 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4740#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4724 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: (DeferredFunctionInfo[Fn] == 0 || DeferredFunctionInfo[Fn] == CurBit) && "Mismat
Updates: Cc: eney...@google.com Comment #6 on issue 4724 by ClusterFuzz-External: llvm/llvm-opt-fuzzer--x86_64-instcombine: ASSERT: (DeferredFunctionInfo[Fn] == 0 || DeferredFunctionInfo[Fn] == CurBit) && "Mismat https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4724#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4984 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!"
Updates: Cc: eney...@google.com Comment #5 on issue 4984 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4984#c5 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 4737 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: idx < size()
Updates: Cc: eney...@google.com Comment #6 on issue 4737 by ClusterFuzz-External: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: idx < size() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4737#c6 (No comment was entered for this change.) -- You received this message because: 1. You were specifically CC'd on the issue You may adjust your notification preferences at: https://bugs.chromium.org/hosting/settings Reply to this email to add a comment. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs