From 182bab8d1e1576d4f80930464292cc766476ef6b Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Tue, 21 Aug 2018 16:24:56 +0000 Subject: Try to fix bot build failure llvm-svn: 340296 --- llvm/lib/Support/TargetParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support/TargetParser.cpp') diff --git a/llvm/lib/Support/TargetParser.cpp b/llvm/lib/Support/TargetParser.cpp index b3ccb1065a9..20aae02f5e5 100644 --- a/llvm/lib/Support/TargetParser.cpp +++ b/llvm/lib/Support/TargetParser.cpp @@ -1027,7 +1027,7 @@ static constexpr GPUInfo AMDGCNGPUs[32] = { static const GPUInfo *getArchEntry(AMDGPU::GPUKind AK, ArrayRef Table) { - GPUInfo Search = { "", "", AK, AMDGPU::FEATURE_NONE }; + GPUInfo Search = { {""}, {""}, AK, AMDGPU::FEATURE_NONE }; auto I = std::lower_bound(Table.begin(), Table.end(), Search, [](const GPUInfo &A, const GPUInfo &B) { -- cgit v1.2.3