1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/Bitcode/apple-clang-700-compat.test
Vedant Kumar 3117751229 [Bitcode] Address backwards compat bug in r342631
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
2018-09-20 18:59:33 +00:00

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)