The word `separate' only has one `e'.
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 14 Jul 2003 17:26:34 +0000 (17:26 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 14 Jul 2003 17:26:34 +0000 (17:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7174 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.common
Makefile.rules
lib/Analysis/Expressions.cpp

index d48647db9c5cdc86b9236f3719c0ddf71c78eb4d..f3316ba962b9b9d40a4383add66296a902434e7c 100644 (file)
@@ -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))
index d48647db9c5cdc86b9236f3719c0ddf71c78eb4d..f3316ba962b9b9d40a4383add66296a902434e7c 100644 (file)
@@ -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))
index 9b305bbe4097ea32d1700e001ed4f691ff021480..f1016a50dbe70f6d3a3bee00adf38dd1fe721e19 100644 (file)
@@ -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)));