[llvm-bugs] [Bug 31183] New: opt crashes with "opt -sroa -lcssa -licm": Assertion `InLCSSA && "Requested to preserve LCSSA, but it's already broken."' failed
via llvm-bugs
llvm-bugs at lists.llvm.org
Sun Nov 27 23:36:10 PST 2016
https://llvm.org/bugs/show_bug.cgi?id=31183
Bug ID: 31183
Summary: opt crashes with "opt -sroa -lcssa -licm": Assertion
`InLCSSA && "Requested to preserve LCSSA, but it's
already broken."' failed
Product: libraries
Version: trunk
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P
Component: Scalar Optimizations
Assignee: unassignedbugs at nondot.org
Reporter: su at cs.ucdavis.edu
CC: llvm-bugs at lists.llvm.org
Classification: Unclassified
$ clang -v
clang version 4.0.0 (trunk 287975)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/local/clang-trunk/bin
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9.4
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/5
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/5.3.0
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.4
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.4.7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.6
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.6.4
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7.3
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.8
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.8.5
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.9
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.9.4
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/5
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/5.3.0
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/6
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/6.2.0
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.9
Candidate multilib: .;@m64
Candidate multilib: 32;@m32
Candidate multilib: x32;@mx32
Selected multilib: .;@m64
$
$ clang -c -emit-llvm -w -o small.bc small.c
$ opt -sroa -lcssa -licm -o small-opt.bc small.bc
opt:
/tmp/llvm-builder/llvm-source-trunk/lib/Transforms/Utils/LoopSimplify.cpp:823:
virtual bool {anonymous}::LoopSimplify::runOnFunction(llvm::Function&):
Assertion `InLCSSA && "Requested to preserve LCSSA, but it's already broken."'
failed.
#0 0x0000000001c45a45 (opt+0x1c45a45)
#1 0x0000000001c43b2e (opt+0x1c43b2e)
#2 0x0000000001c43c90 (opt+0x1c43c90)
#3 0x00007fa431ad5330 __restore_rt
(/lib/x86_64-linux-gnu/libpthread.so.0+0x10330)
#4 0x00007fa4308c1c37 gsignal
/build/eglibc-oGUzwX/eglibc-2.19/signal/../nptl/sysdeps/unix/sysv/linux/raise.c:56:0
#5 0x00007fa4308c5028 abort
/build/eglibc-oGUzwX/eglibc-2.19/stdlib/abort.c:91:0
#6 0x00007fa4308babf6 __assert_fail_base
/build/eglibc-oGUzwX/eglibc-2.19/assert/assert.c:92:0
#7 0x00007fa4308baca2 (/lib/x86_64-linux-gnu/libc.so.6+0x2fca2)
#8 0x0000000001cbac57 (opt+0x1cbac57)
#9 0x00000000017dfe83 (opt+0x17dfe83)
#10 0x00000000017dff2c (opt+0x17dff2c)
#11 0x00000000017e0bda (opt+0x17e0bda)
#12 0x000000000078c9a1 (opt+0x78c9a1)
#13 0x00007fa4308acf45 __libc_start_main
/build/eglibc-oGUzwX/eglibc-2.19/csu/libc-start.c:321:0
#14 0x00000000007e6f4b (opt+0x7e6f4b)
Stack dump:
0. Program arguments: opt -sroa -lcssa -licm -o small-opt.bc small.bc
1. Running pass 'Function Pass Manager' on module 'small.bc'.
2. Running pass 'Canonicalize natural loops' on function '@fn1'
Aborted (core dumped)
$
$
---------------------------------------------
#include <assert.h>
char a;
void fn1 ()
{
int c = 0;
for (; c < 1; c++)
while (0)
while (1)
while (0)
{
if (a)
{
if (a)
for (; 0; assert (c))
;
break;
}
for (; 0; 1)
assert (0);
}
}
int main ()
{
fn1 ();
return 0;
}
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20161128/4388bb6d/attachment-0001.html>
More information about the llvm-bugs
mailing list