diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-05 05:53:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-05 05:53:14 +0000 |
commit | 32b4b5aea6dc38ac5aaff56fc717aebf188e39c9 (patch) | |
tree | 02321ace3404d95dad95f3638f6dd1e62edef525 /lib/Target | |
parent | 11b3d1621d98c1a09503190cb757c18db863606e (diff) |
more tidying.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107615 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 212cb78624..1671760472 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -793,9 +793,8 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM) EVT VT = SVT; // Do not attempt to promote non-128-bit vectors - if (!VT.is128BitVector()) { + if (!VT.is128BitVector()) continue; - } setOperationAction(ISD::AND, SVT, Promote); AddPromotedToType (ISD::AND, SVT, MVT::v2i64); |