mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
1f970ccb7a
Move copying of global initializers below the cloning of functions. The BlockAddress doesn't have access to the correct basic blocks until the functions have been cloned. This causes the BlockAddress to point to the old values. Just wait until the functions have been cloned before copying the initializers. PR13163 llvm-svn: 199354
16 lines
486 B
Makefile
16 lines
486 B
Makefile
##===- unittests/Linker/Makefile ---------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../..
|
|
TESTNAME = Linker
|
|
LINK_COMPONENTS := core linker
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|