[llvm-bugs] [Bug 50868] New: ICE: fatal error: error in backend: Broken module found, compilation aborted!

via llvm-bugs llvm-bugs at lists.llvm.org
Fri Jun 25 12:03:45 PDT 2021


https://bugs.llvm.org/show_bug.cgi?id=50868

            Bug ID: 50868
           Summary: ICE: fatal error: error in backend: Broken module
                    found, compilation aborted!
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: C
          Assignee: unassignedclangbugs at nondot.org
          Reporter: cnsun at uwaterloo.ca
                CC: blitzrakete at gmail.com, dgregor at apple.com,
                    erik.pilkington at gmail.com, llvm-bugs at lists.llvm.org,
                    richard-llvm at metafoo.co.uk

Not sure whether this is a duplicate to PR 50844. That issue has an error
message "broken function", while this one has "broken module".

$ clang-trunk -v
clang version 13.0.0 (https://github.com/llvm/llvm-project.git
ef906573a127cffef7cae75d5155c15a8a2a3a5e)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/cnsun/usr/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Candidate multilib: 32;@m32
Candidate multilib: x32;@mx32
Selected multilib: .;@m64

$ cat mutant.c
__attribute__((intel_ocl_bicc)) f1();
f2() { f1(); }

$ clang-trunk  mutant.c
mutant.c:1:33: warning: type specifier missing, defaults to 'int'
[-Wimplicit-int]
__attribute__((intel_ocl_bicc)) f1();
                                ^
mutant.c:2:1: warning: type specifier missing, defaults to 'int'
[-Wimplicit-int]
f2() { f1(); }
^
mutant.c:2:14: warning: non-void function does not return a value
[-Wreturn-type]
f2() { f1(); }
             ^
Calling convention does not support varargs or perfect forwarding!
i32 (...)* @f1
fatal error: error in backend: Broken module found, compilation aborted!
clang-13: error: clang frontend command failed with exit code 70 (use -v to see
invocation)
clang version 13.0.0 (https://github.com/llvm/llvm-project.git
ef906573a127cffef7cae75d5155c15a8a2a3a5e)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/cnsun/usr/bin
clang-13: note: diagnostic msg:
********************

PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-13: note: diagnostic msg: /tmp/mutant-6a4818.c
clang-13: note: diagnostic msg: /tmp/mutant-6a4818.sh
clang-13: note: diagnostic msg:

********************

-- 
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/20210625/9268e22f/attachment.html>


More information about the llvm-bugs mailing list