commit | 9f6c4c141ffa9c8b13e90dce2f2285c4479ff403 | [log] [tgz] |
---|---|---|
author | Bob Wilson <bob.wilson@apple.com> | Thu Feb 18 06:05:53 2010 +0000 |
committer | Bob Wilson <bob.wilson@apple.com> | Thu Feb 18 06:05:53 2010 +0000 |
tree | f5b3ac1fc043535a334428d2be5f974c8b01b080 | |
parent | 2155d459a7de626bb77849e5956ef2363d7d4a87 [diff] [blame] |
Use NEON vmin/vmax instructions for floating-point selects. Radar 7461718. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96572 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMISelLowering.h b/lib/Target/ARM/ARMISelLowering.h index 3c5df45..f8f8adc 100644 --- a/lib/Target/ARM/ARMISelLowering.h +++ b/lib/Target/ARM/ARMISelLowering.h
@@ -131,7 +131,11 @@ VREV16, // reverse elements within 16-bit halfwords VZIP, // zip (interleave) VUZP, // unzip (deinterleave) - VTRN // transpose + VTRN, // transpose + + // Floating-point max and min: + FMAX, + FMIN }; }