Skip to content

Commit e5063d7

Browse files
committed
Fix hasCvtFP8VOP1Bug predicate
1 parent 5c72cf0 commit e5063d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AMDGPU/GCNSubtarget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ class GCNSubtarget final : public AMDGPUGenSubtargetInfo,
13531353
bool hasSplitBarriers() const { return getGeneration() >= GFX12; }
13541354

13551355
// \returns true if FP8/BF8 VOP1 form of conversion to F32 is unreliable.
1356-
bool hasCvtFP8VOP1Bug() const { return true; }
1356+
bool hasCvtFP8VOP1Bug() const { return HasCvtFP8Vop1Bug; }
13571357

13581358
// \returns true if CSUB (a.k.a. SUB_CLAMP on GFX12) atomics support a
13591359
// no-return form.

0 commit comments

Comments
 (0)