[llvm-bugs] [Bug 56668] Crashed when dumpping CFG
Issue 56668 Summary Crashed when dumpping CFG Labels new issue Assignees Reporter xyz2k8 I am using llvm14.0.6 version and encountered a crash problem. It seems to work fine when only one file is processed, but as soon as there is more than one file, the program crashes. My process is as follows: 1. I constructed a ClangTool instance with std::vecotr args, and registered an ASTMather; 2. In the callback of ASTMatcher, after obtaining the Body of a function, call CFG::buildCFG to construct the control flow chart, and save the returned unique_ptr to the global variable; 3. When I did all the work to free the smart pointer, the program crashed. I used gdb to view the debug information, the crash code is as follows: > void destroyAll() { if (getNumBuckets() == 0) // Nothing to do. return; const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); for (BucketT *P = getBuckets(), *E = getBucketsEnd(); P != E; ++P) { if (!KeyInfoT::isEqual(**P->getFirst()**, EmptyKey) && !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) P->getSecond().~ValueT(); P->getFirst().~KeyT(); } } The issue is: getBuckets() returns nullptr, and getBucketsEnd() returns not nullptr because getNumBuckets() has a non-zero value. So, calling P->getFirst() after entering the for loop causes problems. ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 56667] [Modules] Clang crashes when instantiating struct in another module
Issue 56667 Summary [Modules] Clang crashes when instantiating struct in another module Labels new issue Assignees Reporter onelumin If a instance of the `msg` struct does not exist in the `msg` module, the `send` module causes clang to segfault with little information given. However, if a `void a() { msg a; }` or simply `msg a;` occurs at the end of the `msg` module, everything compiles and works. The example below is very fragile and also depends on `std::equal_to` to produce the error. I was unable to find a root cause for this since the backtrace was not very useful. FILE **msg.cc** (compiles) [generated preprocessed source](https://github.com/llvm/llvm-project/files/9164587/msg-00472d.cpp.txt) [generated run script](https://github.com/llvm/llvm-project/files/9164590/msg-00472d.sh.txt) ```c++ module; #include #include #include #include export module msg; namespace ipc = boost::interprocess; export struct msg { using manager = ipc::managed_shared_memory::segment_manager; using string_type = ipc::basic_string, ipc::allocator>; boost::unordered_map, std::equal_to> envadds; }; ``` FILE **send.cc** (clang segmentation fault) [-E preprocessed_source](https://github.com/llvm/llvm-project/files/9164475/preprocessed_send.txt) (-gen-reproducer does not work) ```c++ module; #include #include export module send; import msg; void a() { msg a; } ``` **if msg.cc is changed to this, send.cc compiles fine!** ```c++ module; #include #include #include #include export module msg; namespace ipc = boost::interprocess; export struct msg { using manager = ipc::managed_shared_memory::segment_manager; using string_type = ipc::basic_string, ipc::allocator>; boost::unordered_map, std::equal_to> envadds; }; void a() { msg a; } ``` **otherwise:** ``` PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script. Stack dump: 0. Program arguments: clang++ -std=c++2b -stdlib=libc++ -fmodules -Xclang -emit-module-interface -c send.cc -o send.pcm -fmodule-file=msg=msg.pcm 1. parser at end of file 2. /usr/include/boost/unordered/unordered_map.hpp:86:7: instantiating function definition 'boost::unordered::unordered_map, #0 0x7f16758d553a (/usr/lib/libLLVM-14.so+0xcd553a) #1 0x7f16758d2bcf llvm::sys::RunSignalHandlers() (/usr/lib/libLLVM-14.so+0xcd2bcf) #2 0x7f16758d2d1d (/usr/lib/libLLVM-14.so+0xcd2d1d) #3 0x7f167443e8e0 (/usr/lib/libc.so.6+0x3e8e0) #4 0x7f167cab3382 (/usr/lib/libclang-cpp.so.14+0xcb3382) #5 0x7f167cab3301 (/usr/lib/libclang-cpp.so.14+0xcb3301) #6 0x7f167cab388b (/usr/lib/libclang-cpp.so.14+0xcb388b) #7 0x7f167cab4072 (/usr/lib/libclang-cpp.so.14+0xcb4072) #8 0x7f167cab4a70 (/usr/lib/libclang-cpp.so.14+0xcb4a70) #9 0x7f167cab5914 (/usr/lib/libclang-cpp.so.14+0xcb5914) #10 0x7f167cab7f19 clang::QualType::print(clang::Type const*, clang::Qualifiers, llvm::raw_ostream&, clang::PrintingPolicy const&, llvm::Twine const&, unsigned int) (/usr/lib/libclang-cpp.so.14+0xcb7f19) #11 0x7f167ca83280 clang::TemplateArgument::print(clang::PrintingPolicy const&, llvm::raw_ostream&, bool) const (/usr/lib/libclang-cpp.so.14+0xc83280) #12 0x7f167cab3c57 (/usr/lib/libclang-cpp.so.14+0xcb3c57) #13 0x7f167cab4a70 (/usr/lib/libclang-cpp.so.14+0xcb4a70) #14 0x7f167cab5914 (/usr/lib/libclang-cpp.so.14+0xcb5914) #15 0x7f167cab7f19 clang::QualType::print(clang::Type const*, clang::Qualifiers, llvm::raw_ostream&, clang::PrintingPolicy const&, llvm::Twine const&, unsigned int) (/usr/lib/libclang-cpp.so.14+0xcb7f19) #16 0x7f167ca83280 clang::TemplateArgument::print(clang::PrintingPolicy const&, llvm::raw_ostream&, bool) const (/usr/lib/libclang-cpp.so.14+0xc83280) #17 0x7f167cab3c57 (/usr/lib/libclang-cpp.so.14+0xcb3c57) #18 0x7f167c861775 clang::NamedDecl::printNestedNameSpecifier(llvm::raw_ostream&, clang::PrintingPolicy const&) const (/usr/lib/libclang-cpp.so.14+0xa61775) #19 0x7f167c861d57 clang::NamedDecl::printQualifiedName(llvm::raw_ostream&, clang::PrintingPolicy const&) const (/usr/lib/libclang-cpp.so.14+0xa61d57) #20 0x7f167c86262d clang::FunctionDecl::getNameForDiagnostic(llvm::raw_ostream&, clang::PrintingPolicy const&, bool) const (/usr/lib/libclang-cpp.so.14+0xa6262d) #21 0x7f167c8559a3 clang::PrettyDeclStackTraceEntry::print(llvm::raw_ostream&) const (/usr/lib/libclang-cpp.so.14+0xa559a3) #22 0x7f167581a2a7 (/usr/lib/libLLVM-14.so+0xc1a2a7) #23 0x7f16758d2bcf llvm::sys::RunSignalHandlers() (/usr/lib/libLLVM-14.so+0xcd2bcf) #24 0x7f16757bfac9 (/usr/lib/libLLVM-14.so+0xbbfac9) #25 0x7f167443e8e0 (/usr/lib/libc.so.6+0x3e8e0) #26 0x7f167cab3382 (/usr/
[llvm-bugs] [Bug 56666] SimplifySetCC with immediate integer problem
Issue 5 Summary SimplifySetCC with immediate integer problem Labels Assignees Reporter Nafeng SimplifySetCC should not combine the setGE into setGT when isLegalICmpImmediate return falseļ¼ this combine would cause generating a imm copy to reg instruction; ``` // IR %cmp = icmp sge i32 %a, -128 // Debug log print Combining: t11: i1 = setcc t2, Constant:i32<-128>, setge:ch Creating constant: t15: i32 = Constant<-129> Creating new node: t17: i1 = setcc t2, Constant:i32<-129>, setgt:ch ... into: t17: i1 = setcc t2, Constant:i32<-129>, setgt:ch ``` ``` // in my TargetLoweringImpl bool isLegalICmpImmediate(int64_t val) const override { return val <= 127 && val >= -128; } // In SimplifySetCC if ((DCI.isBeforeLegalizeOps() || isCondCodeLegal(NewCC, VT.getSimpleVT())) && (!N1C->isOpaque() || (C.getBitWidth() <= 64 && isLegalICmpImmediate(C.getSExtValue() { return DAG.getSetCC(dl, VT, N0, DAG.getConstant(C, dl, N1.getValueType()), NewCC); } ``` The root cause is !N1C->isOpaque() is always true; What's a Opaque Constant? I can not find any Constant was set opaque; ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] [Bug 56665] Unable to enable logging on the lldb-server host side.
Issue 56665 Summary Unable to enable logging on the lldb-server host side. Labels new issue Assignees Reporter tzb99 The lldb-server command is: lldb-server g 0.0.0.0:2345 riscvv --log-channels lldb all I cross compiled the lldb project using a in-tree build and the source patch is mainly from: https://github.com/luismarques/llvm-project/commit/4a0cccb0cfa8cb5c59c8803077a76751498447ec 1658443389.905858755 ProcessLaunchInfo.cpp:SetUpPtyRedirectionGenerating a pty to use for stdin/out/err 1658443393.688252211 GDBRemoteCommunicationServerLLGS::InitializeDelegate called with NativeProcessProtocol pid 133, current state: invalid 1658443393.697373867 NativeThreadLinux::SetStoppedBySignal called with signal 0x13 1658443393.700402975 NativeThreadLinux.cpp:MaybeLogStateChangepid=133, tid=133: changing from state invalid to stopped 1658443393.705924034 GDBRemoteCommunicationServerLLGS.cpp:LaunchProcess pid = 133: setting up stdout/stderr redirection via $O gdb-remote commands 1658443393.707329988 ProcessGDBRemoteCommunicationServerLLGS::LaunchProcess setting inferior STDIO fd to 3 Launched 'riscvv' as process 133... lldb-server-local_build Connection established. 1658443432.083425999 GDBRemoteCommunicationServerLLGS.cpp:SetCurrentThreadID setting current thread id to 133 1658443432.084943056 GDBRemoteCommunicationServerLLGS.cpp:PrepareStopReplyPacketF preparing packet for pid 133 tid 133 1658443432.086048365 LogThreadStopInfo: m_stop_info in thread: signal 0x13 1658443432.086704016 LogThreadStopInfo: returned stop_info: signal 0x13 1658443432.087290525 GDBRemoteCommunicationServerLLGS.cpp:PrepareStopReplyPacketF pid 133, tid 133, got signal signo = 19, reason = 5, exc_type = 0 PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace. Stack dump: 0. Program arguments: lldb-server g 0.0.0.0:2345 riscvv --log-channels lldb all 1. Program arguments: lldb-server g 0.0.0.0:2345 riscvv --log-channels lldb all #0 0x000fc97e PrintStackTraceSignalHandler(void*) Signals.cpp:0:0 [ 5430.048226] lldb-server[132]: unhandled signal 11 code 0x1 at 0x in lldb-server[1+f9d000] [ 5430.050003] CPU: 0 PID: 132 Comm: lldb-server Not tainted 5.18.0-rc2 #1 [ 5430.050525] Hardware name: riscv-virtio,qemu (DT) [ 5430.050923] epc : 0016e592 ra : 0016e588 sp : 00ffc5ced4e0 [ 5430.051341] gp : 01051ed0 tp : 00ffb894f7b0 t0 : f9e0 [ 5430.051815] t1 : 0007275c t2 : 0010 s0 : 00ffc5ced868 [ 5430.052229] s1 : 010a5110 a0 : 00daf1c8 a1 : 00ffc5ced475 [ 5430.052682] a2 : 004c a3 : 0001 a4 : 00ffc5ced468 [ 5430.053065] a5 : 00ffc5ced450 a6 : 001476aa a7 : [ 5430.053688] s2 : 010d63e8 s3 : 00ffc5ced600 s4 : [ 5430.054169] s5 : 010ed420 s6 : 010edf40 s7 : 00ffc5ced530 [ 5430.054577] s8 : s9 : 00ffc5ced5a8 s10: 00ffc5ced6b0 [ 5430.054959] s11: 00ffc5ced688 t3 : 00ffb89c70b6 t4 : [ 5430.055240] t5 : 00ffc5cec978 t6 : 002a [ 5430.055438] status: 00024020 badaddr: cause: 000d Segmentation fault ___ llvm-bugs mailing list llvm-bugs@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 9575 in oss-fuzz: llvm/clang-format-fuzzer: Stack-overflow in clang::format::UnwrappedLineParser::tryToParseLambdaIntroducer
Updates: Cc: jo...@devlieghere.com Comment #34 on issue 9575 by ClusterFuzz-External: llvm/clang-format-fuzzer: Stack-overflow in clang::format::UnwrappedLineParser::tryToParseLambdaIntroducer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9575#c34 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 7167 in oss-fuzz: llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: jo...@devlieghere.com Comment #16 on issue 7167 by ClusterFuzz-External: llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7167#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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 49320 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Parser::TryAnnotateCXXScopeToken
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 49320 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Parser::TryAnnotateCXXScopeToken https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=49320#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 49201 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::tok::isAnnotation
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 49201 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::tok::isAnnotation https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=49201#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 49199 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::StmtVisitorBase::Visit
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 49199 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::StmtVisitorBase::Visit https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=49199#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 49062 in oss-fuzz: llvm:clang-fuzzer: Abrt in clang::Sema::LookupSpecialMember
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 49062 by ClusterFuzz-External: llvm:clang-fuzzer: Abrt in clang::Sema::LookupSpecialMember https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=49062#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48971 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::Sema::CorrectTypo
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48971 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::Sema::CorrectTypo https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48971#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48820 in oss-fuzz: llvm:clang-format-fuzzer: Stack-overflow in llvm::SmallVectorBase::mallocForGrow
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48820 by ClusterFuzz-External: llvm:clang-format-fuzzer: Stack-overflow in llvm::SmallVectorBase::mallocForGrow https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48820#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48809 in oss-fuzz: llvm:clang-fuzzer: ASSERT: isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && "While comput
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48809 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && "While comput https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48809#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48622 in oss-fuzz: llvm:clang-pseudo-fuzzer: Abrt in clang::expandUCNs
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 48622 by ClusterFuzz-External: llvm:clang-pseudo-fuzzer: Abrt in clang::expandUCNs https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48622#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48508 in oss-fuzz: llvm:clang-format-fuzzer: Null-dereference WRITE in clang::format::UnwrappedLineParser::parseRequires
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48508 by ClusterFuzz-External: llvm:clang-format-fuzzer: Null-dereference WRITE in clang::format::UnwrappedLineParser::parseRequires https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48508#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48486 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Sema::MergeFunctionDecl
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48486 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Sema::MergeFunctionDecl https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48486#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48295 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Sema::isTemplateName
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48295 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Sema::isTemplateName https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48295#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 48106 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::FunctionProtoType::getExceptionSpecInfo
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 48106 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::FunctionProtoType::getExceptionSpecInfo https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48106#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47859 in oss-fuzz: llvm:clang-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47859 by ClusterFuzz-External: llvm:clang-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47859#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47744 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DiagnosticsEngine::DiagState::getOrAddMapping
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47744 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::DiagnosticsEngine::DiagState::getOrAddMapping https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47744#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47661 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Preprocessor::LookUpIdentifierInfo
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47661 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Preprocessor::LookUpIdentifierInfo https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47661#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47659 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DiagnosticIDs::ProcessDiag
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47659 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::DiagnosticIDs::ProcessDiag https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47659#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47510 in oss-fuzz: llvm:llvm-itanium-demangle-fuzzer: Abrt in llvm::itanium_demangle::ArrayType::printRight
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47510 by ClusterFuzz-External: llvm:llvm-itanium-demangle-fuzzer: Abrt in llvm::itanium_demangle::ArrayType::printRight https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47510#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47470 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Sema::EmitCurrentDiagnostic
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47470 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Sema::EmitCurrentDiagnostic https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47470#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47388 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::TagDecl::getDefinition
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47388 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::TagDecl::getDefinition https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47388#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47385 in oss-fuzz: llvm:llvm-itanium-demangle-fuzzer: ASSERT: CurrentPosition
Updates: Cc: jo...@devlieghere.com Comment #1 on issue 47385 by ClusterFuzz-External: llvm:llvm-itanium-demangle-fuzzer: ASSERT: CurrentPosition https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47385#c1 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47347 in oss-fuzz: llvm:clang-fuzzer: ASSERT: Value != -1U
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 47347 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: Value != -1U https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47347#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47225 in oss-fuzz: llvm:clang-format-fuzzer: Stack-overflow with empty stacktrace
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 47225 by ClusterFuzz-External: llvm:clang-format-fuzzer: Stack-overflow with empty stacktrace https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47225#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47210 in oss-fuzz: llvm:clang-objc-fuzzer: ASSERT: I < getArrayInitializedElts() && "Index out of range"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 47210 by ClusterFuzz-External: llvm:clang-objc-fuzzer: ASSERT: I < getArrayInitializedElts() && "Index out of range" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47210#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 47004 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::lookup
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 47004 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::lookup https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47004#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46871 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::Lexer::LexTokenInternal
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46871 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::Lexer::LexTokenInternal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46871#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46863 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::Parser::ParseStatementOrDeclarationAfterAttributes
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46863 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::Parser::ParseStatementOrDeclarationAfterAttributes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46863#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46860 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in llvm::detail::IEEEFloat::convertFromStringSpecials
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46860 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in llvm::detail::IEEEFloat::convertFromStringSpecials https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46860#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46838 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in GetFullTypeForDeclarator
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46838 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in GetFullTypeForDeclarator https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46838#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46739 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::CreateStoredDeclsMap
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46739 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::CreateStoredDeclsMap https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46739#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46668 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in void llvm::SmallVectorImpl::resizeImpl
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46668 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in void llvm::SmallVectorImpl::resizeImpl https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46668#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46605 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Preprocessor::CachingLex
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46605 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Preprocessor::CachingLex https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46605#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46601 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::lookup
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46601 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::lookup https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46601#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46578 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Parser::ParseBlockId
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46578 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Parser::ParseBlockId https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46578#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46326 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::TokenLexer::Lex
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46326 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::TokenLexer::Lex https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46326#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46239 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46239 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46239#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46227 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::NumericLiteralParser::isValidUDSuffix
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46227 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::NumericLiteralParser::isValidUDSuffix https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46227#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46103 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Sema::DiagnoseEmptyLookup
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46103 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Sema::DiagnoseEmptyLookup https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46103#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46096 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::Sema::DiagnoseAvailabilityOfDecl
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46096 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::Sema::DiagnoseAvailabilityOfDecl https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46096#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46078 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::DeclSpec::Finish
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46078 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::DeclSpec::Finish https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46078#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46032 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in ExprEvaluatorBase::VisitCallExpr
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46032 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in ExprEvaluatorBase::VisitCallExpr https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46032#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 46007 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DiagnosticIDs::isARCDiagnostic
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 46007 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::DiagnosticIDs::isARCDiagnostic https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46007#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45813 in oss-fuzz: llvm:clang-fuzzer: ASSERT: ME->getBase()->getType()->isRecordType()
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45813 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: ME->getBase()->getType()->isRecordType() https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45813#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45733 in oss-fuzz: llvm:clang-objc-fuzzer: Use-of-uninitialized-value in clang::Lexer::getTokenPrefixLength
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45733 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Use-of-uninitialized-value in clang::Lexer::getTokenPrefixLength https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45733#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45725 in oss-fuzz: llvm:clang-format-fuzzer: ASSERT: (!TypeIsFinalized || T == Type) && "Please use overwriteFixedType to change a fi
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45725 by ClusterFuzz-External: llvm:clang-format-fuzzer: ASSERT: (!TypeIsFinalized || T == Type) && "Please use overwriteFixedType to change a fi https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45725#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45654 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !getType()->isBooleanType() && "unheralded conversion to bool"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45654 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !getType()->isBooleanType() && "unheralded conversion to bool" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45654#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45441 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in checkOmittedBlockReturnType
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45441 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in checkOmittedBlockReturnType https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45441#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45374 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Parser::ParseCXXClassMemberDeclaration
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45374 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Parser::ParseCXXClassMemberDeclaration https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45374#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45223 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !isIncompleteType() && "This doesn't make sense for incomplete types"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45223 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !isIncompleteType() && "This doesn't make sense for incomplete types" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45223#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45216 in oss-fuzz: llvm:llvm-itanium-demangle-fuzzer: Out-of-memory in llvm-itanium-demangle-fuzzer
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45216 by ClusterFuzz-External: llvm:llvm-itanium-demangle-fuzzer: Out-of-memory in llvm-itanium-demangle-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45216#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45174 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in TransformTypos::RecursiveTransformLoop
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45174 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in TransformTypos::RecursiveTransformLoop https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45174#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45144 in oss-fuzz: llvm:clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45144 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: isa(Val) && "cast() argument of incompatible type!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45144#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45141 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in EvaluatePointer
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45141 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in EvaluatePointer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45141#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45102 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: !isAnnotation() && "getIdentifierInfo() on an annotation token!"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45102 by ClusterFuzz-External: llvm:clangd-fuzzer: ASSERT: !isAnnotation() && "getIdentifierInfo() on an annotation token!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45102#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 45022 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in Evaluate
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 45022 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in Evaluate https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=45022#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44889 in oss-fuzz: llvm:clang-format-fuzzer: Abrt in clang::format::LineJoiner::getNextMergedLine
Updates: Cc: jo...@devlieghere.com Comment #3 on issue 44889 by ClusterFuzz-External: llvm:clang-format-fuzzer: Abrt in clang::format::LineJoiner::getNextMergedLine https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44889#c3 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44835 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Sema::DiagnoseEmptyLookup
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44835 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Sema::DiagnoseEmptyLookup https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44835#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44801 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: End.isValid() && "Macro expansion wasn't captured?"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44801 by ClusterFuzz-External: llvm:clangd-fuzzer: ASSERT: End.isValid() && "Macro expansion wasn't captured?" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44801#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44799 in oss-fuzz: llvm:clang-format-fuzzer: ASSERT: Shift >= 0 || Changes[i].NewlinesBefore > 0 || Changes[i].Spaces >= static_cast
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44799 by ClusterFuzz-External: llvm:clang-format-fuzzer: ASSERT: Shift >= 0 || Changes[i].NewlinesBefore > 0 || Changes[i].Spaces >= static_cast< https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44799#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44780 in oss-fuzz: llvm:clang-format-fuzzer: ASSERT: !TheLine->First->isOneOf(tok::kw_class, tok::kw_enum, tok::kw_struct)
Updates: Cc: jo...@devlieghere.com Comment #3 on issue 44780 by ClusterFuzz-External: llvm:clang-format-fuzzer: ASSERT: !TheLine->First->isOneOf(tok::kw_class, tok::kw_enum, tok::kw_struct) https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44780#c3 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44655 in oss-fuzz: llvm:clang-format-fuzzer: Timeout in clang-format-fuzzer
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44655 by ClusterFuzz-External: llvm:clang-format-fuzzer: Timeout in clang-format-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44655#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44640 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: OutBufCur > OutBufStart && "Invalid call to flush_nonempty."
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44640 by ClusterFuzz-External: llvm:clangd-fuzzer: ASSERT: OutBufCur > OutBufStart && "Invalid call to flush_nonempty." https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44640#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44438 in oss-fuzz: llvm:clangd-fuzzer: Timeout in clangd-fuzzer
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44438 by ClusterFuzz-External: llvm:clangd-fuzzer: Timeout in clangd-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44438#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44402 in oss-fuzz: llvm:clangd-fuzzer: Stack-overflow in llvm::json::Parser::parseValue
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44402 by ClusterFuzz-External: llvm:clangd-fuzzer: Stack-overflow in llvm::json::Parser::parseValue https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44402#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44397 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::EvaluatedExprVisitorBase::VisitStm
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44397 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::EvaluatedExprVisitorBase::VisitStm https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44397#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44302 in oss-fuzz: llvm:llvm-itanium-demangle-fuzzer: Timeout in llvm-itanium-demangle-fuzzer
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44302 by ClusterFuzz-External: llvm:llvm-itanium-demangle-fuzzer: Timeout in llvm-itanium-demangle-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44302#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44295 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: hasIRSupport() && "This action does not have IR file support!"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44295 by ClusterFuzz-External: llvm:clangd-fuzzer: ASSERT: hasIRSupport() && "This action does not have IR file support!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44295#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44279 in oss-fuzz: llvm:clang-fuzzer: Abrt in ExprEvaluatorBase::VisitMemberExpr
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44279 by ClusterFuzz-External: llvm:clang-fuzzer: Abrt in ExprEvaluatorBase::VisitMemberExpr https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44279#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44281 in oss-fuzz: llvm:clang-fuzzer: Abrt in llvm::APInt::compareSigned
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44281 by ClusterFuzz-External: llvm:clang-fuzzer: Abrt in llvm::APInt::compareSigned https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44281#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44214 in oss-fuzz: llvm:clang-fuzzer: ASSERT: V.isArray() && "expected array"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44214 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: V.isArray() && "expected array" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44214#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44190 in oss-fuzz: llvm:clang-fuzzer: ASSERT: Entry != DelayedTypos.end() && "Failed to get the state for a TypoExpr!"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44190 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: Entry != DelayedTypos.end() && "Failed to get the state for a TypoExpr!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44190#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44133 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Parser::ParseConstantExpressionInExprEvalContext
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44133 by ClusterFuzz-External: llvm:clang-fuzzer: Stack-overflow in clang::Parser::ParseConstantExpressionInExprEvalContext https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44133#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44125 in oss-fuzz: llvm:clang-objc-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: jo...@devlieghere.com Comment #3 on issue 44125 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44125#c3 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44121 in oss-fuzz: llvm:clang-objc-fuzzer: ASSERT: Index < Size
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44121 by ClusterFuzz-External: llvm:clang-objc-fuzzer: ASSERT: Index < Size https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44121#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44119 in oss-fuzz: llvm:clang-fuzzer: ASSERT: (FRI->ColonLoc.isValid() || !DG) && "cannot find for range declaration"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44119 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: (FRI->ColonLoc.isValid() || !DG) && "cannot find for range declaration" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44119#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44092 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44092 by ClusterFuzz-External: llvm:clangd-fuzzer: ASSERT: Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44092#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44078 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in clang::StmtVisitorBase::Visit
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44078 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in clang::StmtVisitorBase::Visit https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44078#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44077 in oss-fuzz: llvm:clang-objc-fuzzer: Stack-overflow in SequenceChecker::VisitBinComma
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44077 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Stack-overflow in SequenceChecker::VisitBinComma https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44077#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44076 in oss-fuzz: llvm:llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44076 by ClusterFuzz-External: llvm:llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44076#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 44055 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !Info.Ctx.getLangOpts().CPlusPlus11 && "missing temporary materialization conver
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 44055 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !Info.Ctx.getLangOpts().CPlusPlus11 && "missing temporary materialization conver https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44055#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 43221 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 43221 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=43221#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 42816 in oss-fuzz: llvm:clang-objc-fuzzer: ASSERT: isExpansion() && "Not a macro expansion SLocEntry!"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 42816 by ClusterFuzz-External: llvm:clang-objc-fuzzer: ASSERT: isExpansion() && "Not a macro expansion SLocEntry!" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=42816#c2 (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 https://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: jo...@devlieghere.com Comment #28 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#c28 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 40879 in oss-fuzz: llvm:llvm-microsoft-demangle-fuzzer: Timeout in llvm-microsoft-demangle-fuzzer
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 40879 by ClusterFuzz-External: llvm:llvm-microsoft-demangle-fuzzer: Timeout in llvm-microsoft-demangle-fuzzer https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=40879#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 39058 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 39058 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !isNull() && "Cannot retrieve a NULL type pointer" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=39058#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 38814 in oss-fuzz: llvm:llvm-dwarfdump-fuzzer: ASSERT: DwarfVersion != 0 && "line table prologue has no dwarf version information"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 38814 by ClusterFuzz-External: llvm:llvm-dwarfdump-fuzzer: ASSERT: DwarfVersion != 0 && "line table prologue has no dwarf version information" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=38814#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 37587 in oss-fuzz: llvm:clang-objc-fuzzer: ASSERT: !T->isDependentType() && "should not see dependent types here"
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 37587 by ClusterFuzz-External: llvm:clang-objc-fuzzer: ASSERT: !T->isDependentType() && "should not see dependent types here" https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=37587#c2 (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 https://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: jo...@devlieghere.com Comment #20 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#c20 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 37362 in oss-fuzz: llvm:clang-fuzzer: ASSERT: (!E || isa(E)) && "missing non-odr-use marking for unevalu
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 37362 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: (!E || isa(E)) && "missing non-odr-use marking for unevalu https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=37362#c2 (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 https://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: jo...@devlieghere.com Comment #21 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#c21 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 36700 in oss-fuzz: llvm:clang-objc-fuzzer: ASSERT: getValueKind() == VK_LValue
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 36700 by ClusterFuzz-External: llvm:clang-objc-fuzzer: ASSERT: getValueKind() == VK_LValue https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=36700#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 36201 in oss-fuzz: llvm:clang-fuzzer: ASSERT: !isValueDependent() && "Expression evaluator can't be called on a dependent expr
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 36201 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: !isValueDependent() && "Expression evaluator can't be called on a dependent expr https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=36201#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 36067 in oss-fuzz: llvm:clang-objc-fuzzer: Abrt in llvm::APInt::udiv
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 36067 by ClusterFuzz-External: llvm:clang-objc-fuzzer: Abrt in llvm::APInt::udiv https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=36067#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 35928 in oss-fuzz: llvm:clang-fuzzer: ASSERT: CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc() && "The a
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 35928 by ClusterFuzz-External: llvm:clang-fuzzer: ASSERT: CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc() && "The a https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=35928#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
[llvm-bugs] Issue 35840 in oss-fuzz: llvm:clangd-fuzzer: Abrt in llvm::llvm_unreachable_internal
Updates: Cc: jo...@devlieghere.com Comment #2 on issue 35840 by ClusterFuzz-External: llvm:clangd-fuzzer: Abrt in llvm::llvm_unreachable_internal https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=35840#c2 (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 https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs