mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
5116784826
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45414 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
##===- tools/llvm-upgrade/Makefile -------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../..
|
|
TOOLNAME = llvm-upgrade
|
|
LINK_COMPONENTS := Core support system
|
|
REQUIRES_EH := 1
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
# Make the object code file for the lexer depend upon the header file generated
|
|
# by the Bison parser. This prevents the Lexer from being compiled before the
|
|
# header file it needs is built.
|
|
$(ObjDir)/upgradeLexer.o: $(PROJ_SRC_DIR)/UpgradeParser.h
|
|
|
|
TESTCASE=../../test/Regression/Assembler/2004-09-29-VerifierIsReallySlow.llx
|
|
test:
|
|
llvm-as $(TESTCASE) -o - | llvm-dis -o source.ll -f
|
|
../../Debug/bin/llvm-upgrade -o - $(TESTCASE) 2>err.out | llvm-as | \
|
|
llvm-dis > upgrade.ll -f
|
|
diff source.ll upgrade.ll > diff.out
|
|
|
|
valgrind:
|
|
valgrind ../../Debug/bin/llvm-upgrade -o /dev/null -f $(TESTCASE)
|
|
|
|
$(ObjDir)/UpgradeLexer.o: $(PROJ_SRC_DIR)/UpgradeParser.y $(PROJ_SRC_DIR)/UpgradeParser.h
|