fix a warning.

llvm-svn: 93663
This commit is contained in:
Chris Lattner 2010-01-16 21:55:24 +00:00
parent 1c7beb5638
commit f523bb584c
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace {
// to know that getenv() never returns -1, this will do the job.
if (std::getenv("bar") != (char*) -1)
return;
llvm::Module* M = new llvm::Module("", llvm::getGlobalContext());
(void)new llvm::Module("", llvm::getGlobalContext());
(void)new llvm::UnreachableInst(llvm::getGlobalContext());
(void) llvm::createVerifierPass();
}