mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
591bfa1e0b
This feature is needed in order to support shifts of more than 255 bits on large integer types. This changes the syntax for llvm assembly to make shl, ashr and lshr instructions look like a binary operator: shl i32 %X, 1 instead of shl i32 %X, i8 1 Additionally, this should help a few passes perform additional optimizations. llvm-svn: 33776
16 lines
557 B
Makefile
16 lines
557 B
Makefile
##===- lib/Makefile ----------------------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
LEVEL = ..
|
|
|
|
PARALLEL_DIRS = VMCore AsmParser Bytecode Analysis Transforms CodeGen Target \
|
|
ExecutionEngine Debugger Linker
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|