[llvm-bugs] [Bug 43759] New: "error: expected string in directive" on ARM

2019-10-21 Thread via llvm-bugs
https://bugs.llvm.org/show_bug.cgi?id=43759

Bug ID: 43759
   Summary: "error: expected string in directive" on ARM
   Product: libraries
   Version: trunk
  Hardware: PC
OS: All
Status: NEW
  Severity: normal
  Priority: P
 Component: Backend: ARM
  Assignee: unassignedb...@nondot.org
  Reporter: caij2...@gmail.com
CC: llvm-bugs@lists.llvm.org, peter.sm...@linaro.org,
ties.st...@arm.com

$ cat foo.s
.section ".foo", #alloc
$ arm-linux-gnueabihf-gcc -c foo.s 
$ echo $?
0
$ ~/storage/llvm-project/build/release/bin/clang -target arm-linux-gnueabihf -c
foo.s
foo.s:1:18: error: expected string in directive
.section ".foo", #alloc

-- 
You are receiving this mail because:
You are on the CC list for the bug.___
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] [Bug 43758] New: check_cfc: dash g generate different code with X86 LEA Fixup

2019-10-21 Thread via llvm-bugs
https://bugs.llvm.org/show_bug.cgi?id=43758

Bug ID: 43758
   Summary: check_cfc: dash g generate different code with X86 LEA
Fixup
   Product: clang
   Version: unspecified
  Hardware: PC
OS: Linux
Status: NEW
  Severity: enhancement
  Priority: P
 Component: -New Bugs
  Assignee: unassignedclangb...@nondot.org
  Reporter: yechunlian...@163.com
CC: htmldevelo...@gmail.com, llvm-bugs@lists.llvm.org,
neeil...@live.com, richard-l...@metafoo.co.uk

Debug Info should have no effect on codegen, using check_cfc to scan
llvm_test_suite, find a bug here: 

Reproduce:

/home/chris/llvm-project/clang/utils/check_cfc/clang++
/home/chris/test-suite/MultiSource/Benchmarks/DOE-ProxyApps-C++/HPCCG/generate_matrix.cpp
-w -c -O2 -o tmp.ll


Result:

Check CFC, checking: dash_g_no_change
/home/chris/test-suite/MultiSource/Benchmarks/DOE-ProxyApps-C++/HPCCG/generate_matrix.cpp
Code difference detected with -g
--- /tmp/tmp_v0A26.o

+++ /tmp/tmpNWwZdV.o

@@ -216,6 +216,6 @@

  321:  41 89 f6mov%esi,%r14d
  324:  48 8b b4 24 b8 00 00mov0xb8(%rsp),%rsi
  32b:  00 
- 32c:  44 01 c6add%r8d,%esi
- 32f:  49 8b 53 38 mov0x38(%r11),%rdx
- 333:  48 63 cemovslq %esi,%rcx
+ 32c:  42 8d 34 06 lea(%rsi,%r8,1),%esi
+ 330:  49 8b 53 38 mov0x38(%r11),%rdx
+ 334:  48 63 cemovslq %esi,%rcx
*** Diff truncated ***



Analyze: clang++ with -g will generate different code with X86 LEA Fixup.

reduce the reproduce:

clang++
/home/chris/test-suite/MultiSource/Benchmarks/DOE-ProxyApps-C++/HPCCG/generate_matrix.cpp
-c -O2 -mllvm -opt-bisect-limit=317 -o out1.o 2>log1
clang++
/home/chris/test-suite/MultiSource/Benchmarks/DOE-ProxyApps-C++/HPCCG/generate_matrix.cpp
-c -O2 -mllvm -opt-bisect-limit=320 -o out2.o -g 2>log2
objdump -d -j .text out1.o > out1.obj
objdump -d -j .text out2.o > out2.obj
diff out1.obj out2.obj


Result:

--- out1.obj2019-10-22 12:07:53.633672368 +0800
+++ out2.obj2019-10-22 12:07:53.637672368 +0800
@@ -1,5 +1,5 @@

-out1.o: file format elf64-x86-64
+out2.o: file format elf64-x86-64


 Disassembly of section .text:
@@ -217,32 +217,31 @@
  321:  41 89 f6mov%esi,%r14d
  324:  48 8b b4 24 b8 00 00mov0xb8(%rsp),%rsi
  32b:  00 
- 32c:  44 01 c6add%r8d,%esi
- 32f:  49 8b 53 38 mov0x38(%r11),%rdx
- 333:  48 63 cemovslq %esi,%rcx
- 336:  48 89 04 ca mov%rax,(%rdx,%rcx,8)
- 33a:  49 8b 55 00 mov0x0(%r13),%rdx
- 33e:  48 8b 52 40 mov0x40(%rdx),%rdx
- 342:  48 89 4c 24 28  mov%rcx,0x28(%rsp)
- 347:  4c 89 3c ca mov%r15,(%rdx,%rcx,8)
- 34b:  45 8d 58 ff lea-0x1(%r8),%r11d
- 34f:  49 83 c2 01 add$0x1,%r10
- 353:  45 31 c9xor%r9d,%r9d
- 356:  b9 ff ff ff ff  mov$0x,%ecx
- 35b:  89 5c 24 78 mov%ebx,0x78(%rsp)
- 35f:  89 da   mov%ebx,%edx
- 361:  48 89 54 24 48  mov%rdx,0x48(%rsp)
- 366:  89 6c 24 74 mov%ebp,0x74(%rsp)
- 36a:  89 ea   mov%ebp,%edx
- 36c:  48 89 54 24 38  mov%rdx,0x38(%rsp)
- 371:  44 89 74 24 70  mov%r14d,0x70(%rsp)
- 376:  44 89 f2mov%r14d,%edx
- 379:  48 89 54 24 40  mov%rdx,0x40(%rsp)
- 37e:  4c 8b b4 24 a0 00 00mov0xa0(%rsp),%r14
- 385:  00 
- 386:  eb 43   jmp3cb
<_Z15generate_matrixiiiPP24HPC_Sparse_Matrix_STRUCTPPdS3_S3_+0x3cb>
- 388:  0f 1f 84 00 00 00 00nopl   0x0(%rax,%rax,1)
- 38f:  00 
+ 32c:  42 8d 34 06 lea(%rsi,%r8,1),%esi
+ 330:  49 8b 53 38 mov0x38(%r11),%rdx
+ 334:  48 63 cemovslq %esi,%rcx
+ 337:  48 89 04 ca mov%rax,(%rdx,%rcx,8)
+ 33b:  49 8b 55 00 mov0x0(%r13),%rdx
+ 33f:  48 8b 52 40 mov0x40(%rdx),%rdx
+ 343:  48 89 4c 24 28  mov%rcx,0x28(%rsp)
+ 348:  4c 89 3c ca mov%r15,(%rdx,%rcx,8)
+ 34c:  45 8d 58 ff lea-0x1(%r8),%r11d
+ 350:  49 83 c2 01 add$0x1,%r10
+ 354:  45 31 c9xor%r9d,%r9d
+ 357:  b9 ff ff ff ff  mov$0x,%ecx
+ 35c:  89 5c 24 78 mov%ebx,0x78(%rsp)
+ 3

[llvm-bugs] [Bug 43757] New: Debug Info should have no effect on codegen

2019-10-21 Thread via llvm-bugs
https://bugs.llvm.org/show_bug.cgi?id=43757

Bug ID: 43757
   Summary: Debug Info should have no effect on codegen
   Product: clang
   Version: unspecified
  Hardware: PC
OS: Linux
Status: NEW
  Severity: enhancement
  Priority: P
 Component: LLVM Codegen
  Assignee: unassignedclangb...@nondot.org
  Reporter: yechunlian...@163.com
CC: llvm-bugs@lists.llvm.org, neeil...@live.com,
richard-l...@metafoo.co.uk

This bug is a summary for bugs will be reported related with "Debug Info should
have no effect on codegen" - the project of the Google Summer of Code 2019 (ref
to http://llvm.org/OpenProjects.html#debuginfo_codegen_mismatch)

Description of the project: Adding Debug Info (compiling with `clang -g`)
shouldn't change the generated code at all. Unfortunately we have bugs. These
are usually not too hard to fix and a good way to discover new part of the
codebase! We suggest building object files both ways and disassembling the text
sections, which will give cleaner diffs than comparing .s files.

Expected results: Reduced test cases, bug reports with analysis (e.g., which
pass is responsible), possibly patches.


Proposed ways to find a bug:
1. "with/without -g": Using check_cfc.py to scan code on llvm_test_suite
project. (Several bugs already found and will report out)
2. "with/without -strip-debug": using opt command to scan code on
llvm/test/*.ll (not try yet, assume there have bugs)

-- 
You are receiving this mail because:
You are on the CC list for the bug.___
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] [Bug 42666] Clang doesn't warn on some obviously tautological comparisons

2019-10-21 Thread via llvm-bugs
https://bugs.llvm.org/show_bug.cgi?id=42666

rtr...@google.com changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #2 from rtr...@google.com ---
Warning added in r375318 and can be activated by -Wtautological-compare

-- 
You are receiving this mail because:
You are on the CC list for the bug.___
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] [Bug 43756] New: SIGSEGV in clang::ASTContext::getTypeInfo

2019-10-21 Thread via llvm-bugs
https://bugs.llvm.org/show_bug.cgi?id=43756

Bug ID: 43756
   Summary: SIGSEGV in clang::ASTContext::getTypeInfo
   Product: clang-tools-extra
   Version: unspecified
  Hardware: Macintosh
OS: MacOS X
Status: NEW
  Severity: normal
  Priority: P
 Component: clangd
  Assignee: unassignedclangb...@nondot.org
  Reporter: swyj...@163.com
CC: llvm-bugs@lists.llvm.org

Hi,

Clangd crashed when works as lsp server for coc.nvim on Mac OS, backtrace as
below
I found it's same with 20608, https://bugs.llvm.org/show_bug.cgi?id=20608
but it still has no conclusion, and it's a long long ago issue. So I report a
new one.
I have tried llvm+clang-9.0.0 problem still there.

  * frame #0: 0x00010653fb85
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 21
frame #1: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010
frame #2: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #3: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010
frame #4: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #5: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010
frame #6: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #7: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010
frame #8: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #9: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010

=endless loop

frame #7033: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010
frame #7034: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #7035: 0x00010653f7b2
clangd`clang::ASTContext::getPreferredTypeAlign(clang::Type const*) const + 162
frame #7036: 0x00010669784d clangd`GetAlignOfType((anonymous
namespace)::EvalInfo&, clang::QualType) + 205
frame #7037: 0x000106679eab
clangd`clang::StmtVisitorBase::Visit(clang::Stmt const*) + 6939
frame #7038: 0x000106659e40 clangd`Evaluate(clang::APValue&, (anonymous
namespace)::EvalInfo&, clang::Expr const*) + 448
frame #7039: 0x00010665887a clangd`EvaluateAsRValue((anonymous
namespace)::EvalInfo&, clang::Expr const*, clang::APValue&) + 74
frame #7040: 0x000106658589
clangd`clang::Expr::EvaluateAsRValue(clang::Expr::EvalResult&,
clang::ASTContext const&) const + 457
frame #7041: 0x00010665b7fa
clangd`clang::Expr::EvaluateKnownConstInt(clang::ASTContext const&,
llvm::SmallVectorImpl >*) const + 58
frame #7042: 0x0001065b677e
clangd`clang::AlignedAttr::getAlignment(clang::ASTContext&) const + 46
frame #7043: 0x00010660c558 clangd`clang::Decl::getMaxAlignment() const
+ 232
frame #7044: 0x00010670498a clangd`(anonymous
namespace)::ItaniumRecordLayoutBuilder::LayoutField(clang::FieldDecl const*,
bool) + 2746
frame #7045: 0x0001067008e5 clangd`(anonymous
namespace)::ItaniumRecordLayoutBuilder::LayoutFields(clang::RecordDecl const*)
+ 229
frame #7046: 0x0001066f9ca8
clangd`clang::ASTContext::getASTRecordLayout(clang::RecordDecl const*) const +
4840
frame #7047: 0x00010653f06f
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1391
frame #7048: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #7049: 0x00010653eef2
clangd`clang::ASTContext::getTypeInfoImpl(clang::Type const*) const + 1010
frame #7050: 0x00010653fc23
clangd`clang::ASTContext::getTypeInfo(clang::Type const*) const + 179
frame #7051: 0x00010653fb0b
clangd`clang::ASTContext::getTypeInfoInChars(clang::Type const*) const + 123
frame #7052: 0x00010666cac3 clangd`HandleSizeof((anonymous
namespace)::EvalInfo&, clang::SourceLocation, clang::QualType,
clang::CharUnits&) + 99
frame #7053: 0x00010667a46a
clangd`clang::StmtVisitorBase::Visit(clang::Stmt const*) + 8410
frame #7054: 0x000106659e40 clangd`Evaluate(clang::APValue&, (anonymous
namespace)::EvalInfo&, clang::Expr const*) + 448
frame #7055: 0x00010665887a clangd`EvaluateAsRValue((anonymous
namespace)::EvalInfo&, clang::Expr const*, clang::APValue&) + 74
frame #7056: 0x00010665d436
clangd`clang::Expr::isCXX11ConstantExpr(clang::ASTContext const&,
clang::APValue*, clang::SourceLocation*) const + 518
frame #7057: 0x00010665d13c
clangd`clang::Expr::isIntegerConstantExpr(llvm::APSInt&, clang::ASTContext
const&, clang::SourceLocation*, bool) const + 172
frame #7058: 0x000105f6f204
clangd`clang:

[llvm-bugs] Issue 9569 in oss-fuzz: llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::report_bad_alloc_error

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #11 on issue 9569 by ClusterFuzz-External:  
llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::report_bad_alloc_error

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9569#c11

(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 9575 in oss-fuzz: llvm/clang-format-fuzzer: Stack-overflow in clang::format::UnwrappedLineParser::tryToParseLambdaIntroducer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #32 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#c32

(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 8699 in oss-fuzz: llvm/llvm-dwarfdump-fuzzer: Out-of-memory in llvm_llvm-dwarfdump-fuzzer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #12 on issue 8699 by ClusterFuzz-External:  
llvm/llvm-dwarfdump-fuzzer: Out-of-memory in llvm_llvm-dwarfdump-fuzzer

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8699#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
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] Issue 9592 in oss-fuzz: llvm/clang-format-fuzzer: Stack-overflow in clang::format::TokenAnnotator::annotate

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #9 on issue 9592 by ClusterFuzz-External: llvm/clang-format-fuzzer:  
Stack-overflow in clang::format::TokenAnnotator::annotate

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9592#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
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] Issue 9418 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-earlycse: ASSERT: (VTy->isFirstClassType() || VTy->isVoidTy()) && "Cannot create non-first-class v

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #11 on issue 9418 by ClusterFuzz-External:  
llvm/llvm-opt-fuzzer--x86_64-earlycse: ASSERT: (VTy->isFirstClassType() ||  
VTy->isVoidTy()) && "Cannot create non-first-class v

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9418#c11

(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

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #14 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#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
https://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?"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #22 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#c22

(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 4701 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: Direct-leak in llvm::MDTuple::getImpl

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #21 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#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 4278 in oss-fuzz: llvm/clang-format-fuzzer: ASSERT: (TokenText.startswith("//") || TokenText.startswith("#")) && "unsupported line c

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #18 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#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
https://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."

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #13 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#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
https://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

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #14 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#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
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] Issue 4604 in oss-fuzz: llvm/clang-fuzzer: ASSERT: (data().DefaultedCopyConstructorIsDeleted || needsOverloadResolutionForCopyConst

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #18 on issue 4604 by ClusterFuzz-External: llvm/clang-fuzzer:  
ASSERT: (data().DefaultedCopyConstructorIsDeleted ||  
needsOverloadResolutionForCopyConst

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4604#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
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

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #25 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#c25

(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 4737 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: idx < size()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #15 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#c15

(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 4619 in oss-fuzz: llvm/llvm-dwarfdump-fuzzer: Abrt in llvm::llvm_unreachable_internal

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #20 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#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 5579 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT: DAG.getTargetLoweringInfo().isTypeLegal(PartVT) && "Copying to an illegal type!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #13 on issue 5579 by ClusterFuzz-External:  
llvm/llvm-isel-fuzzer--aarch64-O2: ASSERT:  
DAG.getTargetLoweringInfo().isTypeLegal(PartVT) && "Copying to an illegal  
type!"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=5579#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
https://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

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #17 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#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
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] Issue 4908 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-gisel: Null-dereference READ in llvm::IRMutator::mutateModule

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #12 on issue 4908 by ClusterFuzz-External:  
llvm/llvm-isel-fuzzer--aarch64-gisel: Null-dereference READ in  
llvm::IRMutator::mutateModule

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4908#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
https://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

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #17 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#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
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] Issue 5779 in oss-fuzz: llvm/llvm-opt-fuzzer--x86_64-earlycse: ASSERT: fs == opOK || fs == opInexact

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #15 on issue 5779 by ClusterFuzz-External:  
llvm/llvm-opt-fuzzer--x86_64-earlycse: ASSERT: fs == opOK || fs == opInexact

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=5779#c15

(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 4978 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-gisel: ASSERT: NumBytes >= 0 && "Negative stack allocation size!?"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #14 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#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
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs


[llvm-bugs] Issue 6577 in oss-fuzz: llvm/llvm-isel-fuzzer--x86_64-O2: ASSERT: !isEmpty() && "Nothing selected"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #7 on issue 6577 by ClusterFuzz-External:  
llvm/llvm-isel-fuzzer--x86_64-O2: ASSERT: !isEmpty() && "Nothing selected"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=6577#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
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

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #18 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#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
https://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()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #15 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#c15

(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 4704 in oss-fuzz: llvm/llvm-isel-fuzzer--aarch64-gisel: Abrt in handleLLVMFatalError

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #18 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#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
https://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()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #24 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#c24

(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"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #19 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#c19

(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 18412 in oss-fuzz: llvm:clang-fuzzer: Null-dereference READ in EvaluateObjectArgument

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18412 by ClusterFuzz-External: llvm:clang-fuzzer:  
Null-dereference READ in EvaluateObjectArgument

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18412#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 18400 in oss-fuzz: llvm:clang-fuzzer: ASSERT: isa(CanonicalType)

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18400 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: isa(CanonicalType)

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18400#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 3194 in oss-fuzz: llvm: Abrt in llvm::llvm_unreachable_internal

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #23 on issue 3194 by ClusterFuzz-External: llvm: Abrt in  
llvm::llvm_unreachable_internal

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3194#c23

(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 18325 in oss-fuzz: llvm:clang-fuzzer: Null-dereference READ in clang::Sema::DeclareImplicitCopyConstructor

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18325 by ClusterFuzz-External: llvm:clang-fuzzer:  
Null-dereference READ in clang::Sema::DeclareImplicitCopyConstructor

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18325#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 3155 in oss-fuzz: llvm: ASSERT: CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc() && "The a

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #23 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#c23

(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 3239 in oss-fuzz: llvm: ASSERT: getContainingDC(DC) == CurContext && "The next DeclContext should be lexically c

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #23 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#c23

(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 3171 in oss-fuzz: llvm: ASSERT: RHS.U.VAL != 0 && "Divide by zero?"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #23 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#c23

(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 3370 in oss-fuzz: llvm: ASSERT: getClient() && "DiagnosticClient not set!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #22 on issue 3370 by ClusterFuzz-External: llvm: ASSERT:  
getClient() && "DiagnosticClient not set!"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3370#c22

(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 3168 in oss-fuzz: llvm: ASSERT: Access == AS_private || Access == AS_protected

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #23 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#c23

(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 18311 in oss-fuzz: llvm:clang-fuzzer: ASSERT: cast(SubExpr)->getQualifier() && "fixed to a member ref with no nes

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18311 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=18311#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 18312 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-earlycse: ASSERT: Index < Length && "Invalid index!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18312 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-earlycse: ASSERT: Index < Length && "Invalid  
index!"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18312#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 3146 in oss-fuzz: llvm: ASSERT: Access != AS_none && "Access specifier is AS_none inside a record decl"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #24 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#c24

(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 3369 in oss-fuzz: llvm: Out-of-memory in llvm_clang-format-fuzzer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #19 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#c19

(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 3178 in oss-fuzz: llvm: ASSERT: !CodeSynthesisContexts.empty()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #21 on issue 3178 by ClusterFuzz-External: llvm:  
ASSERT: !CodeSynthesisContexts.empty()

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3178#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 18094 in oss-fuzz: llvm:clang-fuzzer: ASSERT: Ctx->isFileContext() && "We should have been looking only at file context here a

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18094 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: Ctx->isFileContext() && "We should have been looking only at file  
context here a

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18094#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 18306 in oss-fuzz: llvm:llvm-isel-fuzzer--wasm32-O2: ASSERT: (Known.Zero & Known.One) == 0 && "Bits known to be one AND zero?"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18306 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--wasm32-O2: ASSERT: (Known.Zero & Known.One) == 0  
&& "Bits known to be one AND zero?"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18306#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 18061 in oss-fuzz: llvm:llvm-special-case-list-fuzzer: Heap-buffer-overflow in p_ere

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18061 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=18061#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 18129 in oss-fuzz: llvm:llvm-dwarfdump-fuzzer: ASSERT: !checkOffset(Data, uintptr_t(Addr), sizeof(*Addr))

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18129 by ClusterFuzz-External:  
llvm:llvm-dwarfdump-fuzzer: ASSERT: !checkOffset(Data, uintptr_t(Addr),  
sizeof(*Addr))

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18129#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 18270 in oss-fuzz: llvm:clang-fuzzer: Null-dereference READ in clang::CXXRecordDecl::data

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18270 by ClusterFuzz-External: llvm:clang-fuzzer:  
Null-dereference READ in clang::CXXRecordDecl::data

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18270#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 18085 in oss-fuzz: llvm:clang-format-fuzzer: Stack-overflow with empty stacktrace

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18085 by ClusterFuzz-External:  
llvm:clang-format-fuzzer: Stack-overflow with empty stacktrace

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18085#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 18295 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::Lexer::LexTokenInternal

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18295 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in clang::Lexer::LexTokenInternal

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18295#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 18028 in oss-fuzz: llvm:llvm-isel-fuzzer--aarch64-O2: ASSERT: TRI.getRegSizeInBits(*getRegClass(DstReg)) == TRI.getRegSizeInBits(*getRegClass(

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18028 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=18028#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 18262 in oss-fuzz: llvm:llvm-isel-fuzzer--aarch64-gisel: ASSERT: (*RBI.getRegBank(DefReg, MRI, TRI)).getID() == AArch64::GPRRegBankID && "Unexpec

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18262 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--aarch64-gisel: ASSERT: (*RBI.getRegBank(DefReg, MRI,  
TRI)).getID() == AArch64::GPRRegBankID && "Unexpec

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18262#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 18047 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: Begin <= End

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18047 by ClusterFuzz-External: llvm:clangd-fuzzer:  
ASSERT: Begin <= End

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18047#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 18240 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-gvn: ASSERT: isFPPredicate() && "Invalid FCmp predicate value"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18240 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-gvn: ASSERT: isFPPredicate() && "Invalid FCmp  
predicate value"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18240#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 18198 in oss-fuzz: llvm:clang-fuzzer: ASSERT: NextLocalOffset + TokLength + 1 > NextLocalOffset && NextLocalOffset + TokLength

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18198 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: NextLocalOffset + TokLength + 1 > NextLocalOffset &&  
NextLocalOffset + TokLength

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18198#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 18118 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-indvars: Timeout in llvm-opt-fuzzer--x86_64-indvars

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18118 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-indvars: Timeout in  
llvm-opt-fuzzer--x86_64-indvars

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18118#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 18256 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in Evaluate

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18256 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in Evaluate

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18256#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 18208 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-loop_unroll: Use-of-uninitialized-value in bool llvm::DenseMapBase

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18208 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-loop_unroll: Use-of-uninitialized-value in  
bool llvm::DenseMapBasellvm::detail::DenseSetEm

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18208#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 18062 in oss-fuzz: llvm:clangd-fuzzer: ASSERT: hasIRSupport() && "This action does not have IR file support!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18062 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=18062#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 18009 in oss-fuzz: llvm:clang-fuzzer: ASSERT: (!isa(LookupCtx) || LookupCtx->isDependentContext() || cast(Lo

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18009 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: (!isa(LookupCtx) || LookupCtx->isDependentContext() ||  
cast(Lo

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18009#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 18251 in oss-fuzz: llvm:llvm-isel-fuzzer--wasm32-O2: Abrt in llvm::llvm_unreachable_internal

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18251 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--wasm32-O2: Abrt in llvm::llvm_unreachable_internal

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18251#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 18151 in oss-fuzz: llvm:clang-fuzzer: ASSERT: (!NonEmptyPasteBefore || PasteBefore || VCtx.isInVAOpt()) && "unexpected ## in R

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18151 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: (!NonEmptyPasteBefore || PasteBefore || VCtx.isInVAOpt())  
&& "unexpected ## in R

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18151#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 18032 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-instcombine: ASSERT: I.use_empty() && "Cannot erase instruction that is used!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18032 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=18032#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 18029 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-gvn: Abrt in llvm::llvm_unreachable_internal

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 18029 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-gvn: Abrt in llvm::llvm_unreachable_internal

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18029#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 17969 in oss-fuzz: llvm:llvm-special-case-list-fuzzer: Timeout in llvm-special-case-list-fuzzer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17969 by ClusterFuzz-External:  
llvm:llvm-special-case-list-fuzzer: Timeout in llvm-special-case-list-fuzzer

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17969#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 17952 in oss-fuzz: llvm:clang-fuzzer: Null-dereference READ in clang::Sema::LookupQualifiedName

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17952 by ClusterFuzz-External: llvm:clang-fuzzer:  
Null-dereference READ in clang::Sema::LookupQualifiedName

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17952#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 17914 in oss-fuzz: llvm:llvm-itanium-demangle-fuzzer: Out-of-memory in llvm-itanium-demangle-fuzzer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17914 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=17914#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 17606 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in EvaluateValue

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17606 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in EvaluateValue

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17606#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 17443 in oss-fuzz: llvm:llvm-dwarfdump-fuzzer: Out-of-memory in llvm-dwarfdump-fuzzer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17443 by ClusterFuzz-External:  
llvm:llvm-dwarfdump-fuzzer: Out-of-memory in llvm-dwarfdump-fuzzer

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17443#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 17498 in oss-fuzz: llvm:clang-fuzzer: ASSERT: DD && "queried property of class with no definition"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17498 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=17498#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 17708 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::StmtVisitorBase::Visit

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17708 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in clang::StmtVisitorBaseSequenceChecker, void>::Visit

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17708#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 17808 in oss-fuzz: llvm:llvm-isel-fuzzer--x86_64-O2: Timeout in llvm-isel-fuzzer--x86_64-O2

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17808 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--x86_64-O2: Timeout in llvm-isel-fuzzer--x86_64-O2

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17808#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 17819 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in ConvertDeclSpecToType

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17819 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in ConvertDeclSpecToType

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17819#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 17661 in oss-fuzz: llvm:llvm-isel-fuzzer--aarch64-gisel: Timeout in llvm-isel-fuzzer--aarch64-gisel

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17661 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--aarch64-gisel: Timeout in  
llvm-isel-fuzzer--aarch64-gisel

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17661#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 17807 in oss-fuzz: llvm:clang-fuzzer: ASSERT: E->isRValue() && E->getType()->isRecordType()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17807 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: E->isRValue() && E->getType()->isRecordType()

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17807#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 17548 in oss-fuzz: llvm:llvm-isel-fuzzer--aarch64-O2: ASSERT: (VT.getVectorNumElements() + N2C->getZExtValue() <= N1.getValueType().getVectorN

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17548 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--aarch64-O2: ASSERT: (VT.getVectorNumElements() +  
N2C->getZExtValue() <= N1.getValueType().getVectorN

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17548#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 17332 in oss-fuzz: llvm:clang-format-fuzzer: ASSERT: NewRemainingTokenColumns < RemainingTokenColumns

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17332 by ClusterFuzz-External:  
llvm:clang-format-fuzzer: ASSERT: NewRemainingTokenColumns <  
RemainingTokenColumns

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17332#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 17663 in oss-fuzz: llvm:llvm-special-case-list-fuzzer: Stack-overflow in p_ere

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17663 by ClusterFuzz-External:  
llvm:llvm-special-case-list-fuzzer: Stack-overflow in p_ere

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17663#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 17667 in oss-fuzz: llvm:llvm-isel-fuzzer--aarch64-O2: Timeout in llvm-isel-fuzzer--aarch64-O2

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17667 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--aarch64-O2: Timeout in llvm-isel-fuzzer--aarch64-O2

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17667#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 17653 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-gvn: ASSERT: !isa(TI) && "Cannot split critical edge from IndirectBrInst"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17653 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-gvn: ASSERT: !isa(TI)  
&& "Cannot split critical edge from IndirectBrInst"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17653#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 17461 in oss-fuzz: llvm:llvm-isel-fuzzer--wasm32-O2: Timeout in llvm-isel-fuzzer--wasm32-O2

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17461 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--wasm32-O2: Timeout in llvm-isel-fuzzer--wasm32-O2

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17461#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 17578 in oss-fuzz: llvm:clang-fuzzer: ASSERT: RHS.U.VAL != 0 && "Divide by zero?"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17578 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: RHS.U.VAL != 0 && "Divide by zero?"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17578#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 17806 in oss-fuzz: llvm:clang-fuzzer: ASSERT: Ancestor->getEntity() == CurContext && "ancestor context mismatch"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17806 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: Ancestor->getEntity() == CurContext && "ancestor context mismatch"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17806#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 17671 in oss-fuzz: llvm:llvm-isel-fuzzer--aarch64-gisel: ASSERT: RC && "This value type is not natively supported!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17671 by ClusterFuzz-External:  
llvm:llvm-isel-fuzzer--aarch64-gisel: ASSERT: RC && "This value type is not  
natively supported!"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17671#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 17830 in oss-fuzz: llvm:clang-fuzzer: ASSERT: (IsDependent || !ObjectType->isIncompleteType() || ObjectType->castAs()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17830 by ClusterFuzz-External: llvm:clang-fuzzer:  
ASSERT: (IsDependent || !ObjectType->isIncompleteType() ||  
ObjectType->castAs()

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17830#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 17742 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in getDefaultInitValue

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17742 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in getDefaultInitValue

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17742#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 17483 in oss-fuzz: llvm:clang-fuzzer: Timeout in clang-fuzzer

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17483 by ClusterFuzz-External: llvm:clang-fuzzer:  
Timeout in clang-fuzzer

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17483#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 17091 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-strength_reduce: ASSERT: !BaseRegs.empty() && "1*reg => reg, should not be needed."

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17091 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-strength_reduce: ASSERT: !BaseRegs.empty()  
&& "1*reg => reg, should not be needed."

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17091#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 17257 in oss-fuzz: llvm:llvm-dwarfdump-fuzzer: Heap-buffer-overflow in llvm::DWARFFormValue::dump

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17257 by ClusterFuzz-External:  
llvm:llvm-dwarfdump-fuzzer: Heap-buffer-overflow in  
llvm::DWARFFormValue::dump

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17257#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 16872 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::EvaluatedExprVisitorBase::VisitSt

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 16872 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in clang::EvaluatedExprVisitorBaseSequenceChecker>::VisitSt

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16872#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 16758 in oss-fuzz: llvm:clang-format-fuzzer: Null-dereference READ in clang::format::TokenAnnotator::splitPenalty

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 16758 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=16758#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 16771 in oss-fuzz: llvm:clang-fuzzer: Null-dereference READ in clang::TokenLexer::ExpandFunctionArguments

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 16771 by ClusterFuzz-External: llvm:clang-fuzzer:  
Null-dereference READ in clang::TokenLexer::ExpandFunctionArguments

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16771#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 17049 in oss-fuzz: llvm:llvm-itanium-demangle-fuzzer: ASSERT: Parser->TemplateParams.size() >= OldNumTemplateParamLists

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17049 by ClusterFuzz-External:  
llvm:llvm-itanium-demangle-fuzzer: ASSERT: Parser->TemplateParams.size() >=  
OldNumTemplateParamLists

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17049#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 17329 in oss-fuzz: llvm:clang-format-fuzzer: ASSERT: PPBranchLevel >= 0 && PPBranchLevel <= (int)PPLevelBranchIndex.size()

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 17329 by ClusterFuzz-External:  
llvm:clang-format-fuzzer: ASSERT: PPBranchLevel >= 0 && PPBranchLevel <=  
(int)PPLevelBranchIndex.size()

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17329#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 16680 in oss-fuzz: llvm:clang-fuzzer: Null-dereference READ in llvm::detail::IEEEFloat::roundSignificandWithExponent

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 16680 by ClusterFuzz-External: llvm:clang-fuzzer:  
Null-dereference READ in  
llvm::detail::IEEEFloat::roundSignificandWithExponent

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16680#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 16899 in oss-fuzz: llvm:llvm-opt-fuzzer--x86_64-instcombine: ASSERT: Amt->getType()->isIntegerTy() && "Allocation array size is not an integer!"

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 16899 by ClusterFuzz-External:  
llvm:llvm-opt-fuzzer--x86_64-instcombine: ASSERT:  
Amt->getType()->isIntegerTy() && "Allocation array size is not an integer!"

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16899#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 16935 in oss-fuzz: llvm:clang-fuzzer: Stack-overflow in clang::DeclContext::lookup

2019-10-21 Thread ClusterFuzz-External via monorail via llvm-bugs

Updates:
Cc: d...@google.com

Comment #1 on issue 16935 by ClusterFuzz-External: llvm:clang-fuzzer:  
Stack-overflow in clang::DeclContext::lookup

https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16935#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


  1   2   3   >