[dsymutil] Rename a variable to appease some bots.
authorFrederic Riss <friss@apple.com>
Fri, 5 Jun 2015 21:21:57 +0000 (21:21 +0000)
committerFrederic Riss <friss@apple.com>
Fri, 5 Jun 2015 21:21:57 +0000 (21:21 +0000)
Anyway having the type and the name of the member being the same
thing wasn't the wisest of the choices.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239190 91177308-0d34-0410-b5e6-96231b3b80d8

tools/dsymutil/DebugMap.cpp

index 6a8e49ca86ffcc4cd590e8a9c2fe4c178d46be80..1a81848847f66647067b76bb8355685c78a5634f 100644 (file)
@@ -91,7 +91,7 @@ void DebugMap::dump() const { print(errs()); }
 namespace {
 struct YAMLContext {
   StringRef PrependPath;
-  Triple Triple;
+  Triple BinaryTriple;
 };
 }
 
@@ -176,7 +176,7 @@ void MappingTraits<dsymutil::DebugMap>::mapping(IO &io,
   io.mapRequired("triple", DM.BinaryTriple);
   io.mapOptional("objects", DM.Objects);
   if (void *Ctxt = io.getContext())
-    reinterpret_cast<YAMLContext *>(Ctxt)->Triple = DM.BinaryTriple;
+    reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM.BinaryTriple;
 }
 
 void MappingTraits<std::unique_ptr<dsymutil::DebugMap>>::mapping(
@@ -186,7 +186,7 @@ void MappingTraits<std::unique_ptr<dsymutil::DebugMap>>::mapping(
   io.mapRequired("triple", DM->BinaryTriple);
   io.mapOptional("objects", DM->Objects);
   if (void *Ctxt = io.getContext())
-    reinterpret_cast<YAMLContext *>(Ctxt)->Triple = DM->BinaryTriple;
+    reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM->BinaryTriple;
 }
 
 MappingTraits<dsymutil::DebugMapObject>::YamlDMO::YamlDMO(