From b18cd6d1d162dc9804961742a673cde433c192f5 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sun, 29 Apr 2018 02:01:34 +0000 Subject: [LLVM-C] Eliminate an unused variable in a test. This was introduced in r331123 and broke -Werror bots. llvm-svn: 331132 --- llvm/tools/llvm-c-test/debuginfo.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'llvm/tools/llvm-c-test') diff --git a/llvm/tools/llvm-c-test/debuginfo.c b/llvm/tools/llvm-c-test/debuginfo.c index 0c3410d949e..8bbe2b6d98f 100644 --- a/llvm/tools/llvm-c-test/debuginfo.c +++ b/llvm/tools/llvm-c-test/debuginfo.c @@ -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); -- cgit v1.2.3