mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-30 06:40:53 +00:00
The word separate' only has one
e'.
llvm-svn: 7174
This commit is contained in:
parent
5de3e14206
commit
0b5999cca1
@ -592,7 +592,7 @@ LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
|
||||
|
||||
# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
|
||||
# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
|
||||
# files seperately.
|
||||
# files separately.
|
||||
#
|
||||
STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
|
||||
USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
|
||||
|
@ -592,7 +592,7 @@ LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
|
||||
|
||||
# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
|
||||
# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
|
||||
# files seperately.
|
||||
# files separately.
|
||||
#
|
||||
STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
|
||||
USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
|
||||
|
@ -253,7 +253,7 @@ ExprType ClassifyExpression(Value *Expr) {
|
||||
Instruction *I = cast<Instruction>(Expr);
|
||||
const Type *Ty = I->getType();
|
||||
|
||||
switch (I->getOpcode()) { // Handle each instruction type seperately
|
||||
switch (I->getOpcode()) { // Handle each instruction type separately
|
||||
case Instruction::Add: {
|
||||
ExprType Left (ClassifyExpression(I->getOperand(0)));
|
||||
ExprType Right(ClassifyExpression(I->getOperand(1)));
|
||||
|
Loading…
Reference in New Issue
Block a user