forked from OSchip/llvm-project
Since r241097, `DIBuilder` has only created distinct `DICompileUnit`s.
The backend is liable to start relying on that (if it hasn't already),
so make uniquable `DICompileUnit`s illegal and automatically upgrade old
bitcode. This is a nice cleanup, since we can remove an unnecessary
`DenseSet` (and the associated uniquing info) from `LLVMContextImpl`.
Almost all the testcases were updated with this script:
git grep -e '= !DICompileUnit' -l -- test |
grep -v test/Bitcode |
xargs sed -i '' -e 's,= !DICompileUnit,= distinct !DICompileUnit,'
I imagine something similar should work for out-of-tree testcases.
llvm-svn: 243885
|
||
|---|---|---|
| .. | ||
| 2008-11-17-Shl64.ll | ||
| 2009-01-08-Crash.ll | ||
| 2009-01-14-Remat-Crash.ll | ||
| 2009-03-27-v2f64-param.ll | ||
| 2009-07-15-store192.ll | ||
| 2010-02-25-LSR-Crash.ll | ||
| 2011-01-31-DAGCombineBug.ll | ||
| 2011-08-01-DynamicAllocBug.ll | ||
| DbgValueOtherTargets.test | ||
| addsub64.ll | ||
| aliases.ll | ||
| align.ll | ||
| alignment.ll | ||
| ashr.ll | ||
| atomic.ll | ||
| basictest.ll | ||
| bigstructret.ll | ||
| byVal.ll | ||
| call.ll | ||
| codemodel.ll | ||
| constants.ll | ||
| dwarf_debug.ll | ||
| epilogue_prologue.ll | ||
| events.ll | ||
| exception.ll | ||
| float-intrinsics.ll | ||
| fneg.ll | ||
| getid.ll | ||
| globals.ll | ||
| indirectbr.ll | ||
| inline-asm.ll | ||
| ladd_lsub_combine.ll | ||
| licm-ldwcp.ll | ||
| linkage.ll | ||
| lit.local.cfg | ||
| llvm-intrinsics.ll | ||
| load.ll | ||
| memcpy.ll | ||
| misc-intrinsics.ll | ||
| mkmsk.ll | ||
| mul64.ll | ||
| offset_folding.ll | ||
| private.ll | ||
| ps-intrinsics.ll | ||
| resources.ll | ||
| resources_combine.ll | ||
| scavenging.ll | ||
| sext.ll | ||
| shedulingPreference.ll | ||
| sr-intrinsics.ll | ||
| store.ll | ||
| switch.ll | ||
| switch_long.ll | ||
| threads.ll | ||
| tls.ll | ||
| trampoline.ll | ||
| trap.ll | ||
| unaligned_load.ll | ||
| unaligned_store.ll | ||
| unaligned_store_combine.ll | ||
| varargs.ll | ||
| zext.ll | ||
| zextfree.ll | ||