File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -386,12 +386,10 @@ using namespace llvm;
386
386
static const Regex DefaultAliasRegex (
387
387
" ^(default|thinlto-pre-link|thinlto|lto-pre-link|lto)<(O[0123sz])>$" );
388
388
389
- namespace llvm {
390
- cl::opt<bool > PrintPipelinePasses (
389
+ cl::opt<bool > llvm::PrintPipelinePasses (
391
390
" print-pipeline-passes" ,
392
391
cl::desc (" Print a '-passes' compatible string describing the pipeline "
393
392
" (best-effort only)." ));
394
- } // namespace llvm
395
393
396
394
AnalysisKey NoOpModuleAnalysis::Key;
397
395
AnalysisKey NoOpCGSCCAnalysis::Key;
@@ -429,7 +427,7 @@ class TriggerVerifierErrorPass
429
427
PreservedAnalyses run (Module &M, ModuleAnalysisManager &) {
430
428
// Intentionally break the Module by creating an alias without setting the
431
429
// aliasee.
432
- auto *PtrTy = llvm:: PointerType::getUnqual (M.getContext ());
430
+ auto *PtrTy = PointerType::getUnqual (M.getContext ());
433
431
GlobalAlias::create (PtrTy, PtrTy->getAddressSpace (),
434
432
GlobalValue::LinkageTypes::InternalLinkage,
435
433
" __bad_alias" , nullptr , &M);
You can’t perform that action at this time.
0 commit comments