[LLVM-C] Eliminate an unused variable in a test.

This was introduced in r331123 and broke -Werror bots.

llvm-svn: 331132
This commit is contained in:
whitequark 2018-04-29 02:01:34 +00:00
parent ab0f3fddc8
commit b18cd6d1d1
1 changed files with 2 additions and 3 deletions

View File

@ -45,9 +45,8 @@ int llvm_test_dibuilder(void) {
LLVMMetadataRef ImportedModule =
LLVMDIBuilderCreateImportedModuleFromModule(DIB, Module, OtherModule,
File, 42);
LLVMMetadataRef AliasImportedModule =
LLVMDIBuilderCreateImportedModuleFromAlias(DIB, Module, ImportedModule,
File, 42);
LLVMDIBuilderCreateImportedModuleFromAlias(DIB, Module, ImportedModule,
File, 42);
LLVMMetadataRef Int64Ty =
LLVMDIBuilderCreateBasicType(DIB, "Int64", 5, 64, 0);