Skip to content
Snippets Groups Projects

Cava Harness

Merged Aaron Councilman requested to merge cava-harness into main
28 files
+ 24418
181
Compare changes
  • Side-by-side
  • Inline
Files
28
+ 2
2
@@ -848,7 +848,7 @@ fn convert_intrinsic(intrinsic: &Intrinsic, ty: &Type) -> String {
Intrinsic::Log2 => "log2",
Intrinsic::Max => {
if ty.is_float() {
"max"
"maxnum"
} else if ty.is_unsigned() {
"umax"
} else if ty.is_signed() {
@@ -859,7 +859,7 @@ fn convert_intrinsic(intrinsic: &Intrinsic, ty: &Type) -> String {
}
Intrinsic::Min => {
if ty.is_float() {
"min"
"minnum"
} else if ty.is_unsigned() {
"umin"
} else if ty.is_signed() {
Loading