//===---------------------------------------------------------------------===//
+Should generate min/max for stuff like:
+
+void minf(float a, float b, float *X) {
+ *X = a <= b ? a : b;
+}
+
Make use of floating point min / max instructions. Perhaps introduce ISD::FMIN
and ISD::FMAX node types?
//===---------------------------------------------------------------------===//
-Should generate min/max for stuff like:
-
-void minf(float a, float b, float *X) {
- *X = a <= b ? a : b;
-}
-
-//===---------------------------------------------------------------------===//
-
Teach the coallescer to coales vregs of different register classes. e.g. FR32 /
FR64 to VR128.