From 30a5d21457f71bb63a113d9cefd6af5c21e44142 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Thu, 29 Jan 2015 19:34:18 +0000 Subject: [PATCH] R600/SI: Fix tonga's basic scheduling model git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227482 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/R600/Processors.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/R600/Processors.td b/lib/Target/R600/Processors.td index cff97cdb3be..659301651c1 100644 --- a/lib/Target/R600/Processors.td +++ b/lib/Target/R600/Processors.td @@ -113,7 +113,7 @@ def : ProcessorModel<"mullins", SIQuarterSpeedModel, [FeatureSeaIslands]>; // Volcanic Islands //===----------------------------------------------------------------------===// -def : ProcessorModel<"tonga", SIFullSpeedModel, [FeatureVolcanicIslands]>; +def : ProcessorModel<"tonga", SIQuarterSpeedModel, [FeatureVolcanicIslands]>; def : ProcessorModel<"iceland", SIQuarterSpeedModel, [FeatureVolcanicIslands]>; -- 2.34.1