Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126018 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
echristo committed Feb 19, 2011
1 parent 3f912ad commit dd6e40a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Target/X86/X86ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5509,7 +5509,7 @@ static inline unsigned getUNPCKLOpcode(EVT VT) {
case MVT::v16i8: return X86ISD::PUNPCKLBW;
case MVT::v8i16: return X86ISD::PUNPCKLWD;
default:
llvm_unreachable("Unknow type for unpckl");
llvm_unreachable("Unknown type for unpckl");
}
return 0;
}
Expand All @@ -5523,7 +5523,7 @@ static inline unsigned getUNPCKHOpcode(EVT VT) {
case MVT::v16i8: return X86ISD::PUNPCKHBW;
case MVT::v8i16: return X86ISD::PUNPCKHWD;
default:
llvm_unreachable("Unknow type for unpckh");
llvm_unreachable("Unknown type for unpckh");
}
return 0;
}
Expand Down

0 comments on commit dd6e40a

Please sign in to comment.