llvmpipe: Call LLVMShutdown before exiting.

So that LLVM frees its globals.

Trivial.
This commit is contained in:
Jose Fonseca 2016-04-19 12:08:01 +01:00
parent 524042fa35
commit 1d2ac7a7ca

View file

@ -414,5 +414,7 @@ int main(int argc, char **argv)
if (fp)
fclose(fp);
LLVMShutdown();
return success ? 0 : 1;
}