[JSONExporter] Try to appease buildbot. NFC.

The compiler does not seem to able move a local variable in the
function's return statement.

llvm-svn: 338466
This commit is contained in:
Michael Kruse 2018-08-01 00:48:01 +00:00
parent da08078fb2
commit 37b3c1775b
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ static json::Value getJSON(Scop &S) {
}
root["statements"] = std::move(Statements);
return root;
return json::Value(std::move(root));
}
static void exportScop(Scop &S) {