mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
3117751229
r342631 expanded bitc::METADATA_LOCATION by one element. The bitcode metadata loader was changed in a backwards-incompatible way, leading to crashes when disassembling old bitcode: assertion: empty() && "PlaceholderQueue hasn't been flushed before being destroyed" Assertion failed: (empty() && "PlaceholderQueue hasn't been flushed before being destroyed") This commit teaches the metadata loader to assume that the newly-added IsImplicitCode bit is 'false' when not present in old bitcode. I've added a bitcode compat regression test. rdar://44645820 llvm-svn: 342678
9 lines
383 B
Plaintext
9 lines
383 B
Plaintext
; AppleClang-700 uses a debug info version that isn't recognized by llvm.org
|
|
; compilers. However, it does produce valid bitcode which should parse without
|
|
; crashing the metadata loader.
|
|
|
|
RUN: llvm-dis < %S/Inputs/apple-clang-700-O3-g-1.bc 2>&1 \
|
|
RUN: | FileCheck %s -check-prefix INVALID-VERSION
|
|
|
|
INVALID-VERSION: warning: ignoring debug info with an invalid version (700000003)
|