26 lines
887 B
Diff
26 lines
887 B
Diff
From 3611b904b0f9816e722b8bca779f68ae96d45d27 Mon Sep 17 00:00:00 2001
|
|
From: sreenivasaMurthy Kolam <sreenivasamurthy.kolam@amd.com>
|
|
Date: Thu, 22 Oct 2020 03:31:29 -0700
|
|
Subject: [PATCH] fix compile error
|
|
|
|
---
|
|
Tensile/Source/lib/include/Tensile/llvm/YAML.hpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Tensile/Source/lib/include/Tensile/llvm/YAML.hpp b/Tensile/Source/lib/include/Tensile/llvm/YAML.hpp
|
|
index 16e64ff9..0d00f470 100644
|
|
--- a/Tensile/Source/lib/include/Tensile/llvm/YAML.hpp
|
|
+++ b/Tensile/Source/lib/include/Tensile/llvm/YAML.hpp
|
|
@@ -261,7 +261,7 @@ namespace llvm
|
|
|
|
static void inputOne(IO& io, StringRef key, Hide<T>& value)
|
|
{
|
|
- Impl::inputOne(io, key, *value);
|
|
+ Impl::inputOne(io, key.str(), *value);
|
|
}
|
|
|
|
static void output(IO& io, Hide<T>& value)
|
|
--
|
|
2.22.0
|
|
|