[LLVMbugs] [Bug 18083] New: clang crashes on valid code at -O1 and above on x86_64-linux-gnu

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Thu Nov 28 09:32:05 PST 2013


http://llvm.org/bugs/show_bug.cgi?id=18083

            Bug ID: 18083
           Summary: clang crashes on valid code at -O1 and above on
                    x86_64-linux-gnu
           Product: clang
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
          Assignee: unassignedclangbugs at nondot.org
          Reporter: su at cs.ucdavis.edu
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

The current clang trunk crashes when compiling the following testcase at -O1
and above on x86_64-linux-gnu in both 32-bit and 64-bit modes. 

This is a regression from clang 3.3.


$ clang-trunk -v
clang version 3.5 (trunk 195916)
Target: x86_64-unknown-linux-gnu
Thread model: posix
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.6
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.3
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.6
$ 
$ clang-trunk -O0 -c small.c 
$ clang-3.3 -O1 -c small.c
$  
$ clang-trunk -O1 -c small.c
0  clang           0x00000000021c7e65 llvm::sys::PrintStackTrace(_IO_FILE*) +
37
1  clang           0x00000000021c82a3
2  libpthread.so.0 0x00007f29e7c2fcb0
Stack dump:
0.    Program arguments: /usr/local/clang-trunk/bin/clang -cc1 -triple
x86_64-unknown-linux-gnu -emit-obj -disable-free -main-file-name small.c
-mrelocation-model static -fmath-errno -masm-verbose -mconstructor-aliases
-munwind-tables -target-cpu x86-64 -target-linker-version 2.22
-momit-leaf-frame-pointer -coverage-file
/data2/c-hunter-results/C/trans-bugs/20131128-clang-m32-m64-O1-O2-O3-Os-build-test790089/small.o
-resource-dir /usr/local/clang-trunk/bin/../lib/clang/3.5 -internal-isystem
/usr/local/include -internal-isystem
/usr/local/clang-trunk/bin/../lib/clang/3.5/include -internal-externc-isystem
/usr/include/x86_64-linux-gnu -internal-externc-isystem /include
-internal-externc-isystem /usr/include -O1 -fdebug-compilation-dir
/data2/c-hunter-results/C/trans-bugs/20131128-clang-m32-m64-O1-O2-O3-Os-build-test790089
-ferror-limit 19 -fmessage-length 103 -mstackrealign -fobjc-runtime=gcc
-fdiagnostics-show-option -fcolor-diagnostics -vectorize-slp -o small.o -x c
small.c 
1.    <eof> parser at end of file
2.    Per-module optimization passes
3.    Running pass 'Global Variable Optimizer' on module 'small.c'.
clang: error: unable to execute command: Segmentation fault (core dumped)
clang: error: clang frontend command failed due to signal (use -v to see
invocation)
clang version 3.5 (trunk 195916)
Target: x86_64-unknown-linux-gnu
Thread model: posix
clang: note: diagnostic msg: PLEASE submit a bug report to
http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and
associated run script.
clang: note: diagnostic msg: 
********************

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

********************
$ 


--------------------------------------


static char a[2][1];
static char *b[2] = {&a[1][0], &a[0][0]};
static char **c = &b[1];

void
foo ()
{
  **c = 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/20131128/e78f5a05/attachment.html>


More information about the llvm-bugs mailing list