diff options
Diffstat (limited to 'lib/Analysis/Expressions.cpp')
-rw-r--r-- | lib/Analysis/Expressions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/Expressions.cpp b/lib/Analysis/Expressions.cpp index 9b305bbe40..f1016a50db 100644 --- a/lib/Analysis/Expressions.cpp +++ b/lib/Analysis/Expressions.cpp @@ -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))); |