From 4e62db4167a7e787640cf3f9e37c347e7970b1c8 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 29 Mar 2016 19:19:03 +0000 Subject: [PATCH] Replace a FIXME with a regular comment. Because it doesn't have to be fixed even though it is probably better to do. llvm-svn: 264772 --- lld/ELF/LTO.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lld/ELF/LTO.cpp b/lld/ELF/LTO.cpp index bce268e..191ec72 100644 --- a/lld/ELF/LTO.cpp +++ b/lld/ELF/LTO.cpp @@ -49,7 +49,8 @@ static void saveBCFile(Module &M, StringRef Suffix) { } // Run LTO passes. -// FIXME: Reduce code duplication by sharing this code with the gold plugin. +// Note that the gold plugin has a similar piece of code, so +// it is probably better to move this code to a common place. static void runLTOPasses(Module &M, TargetMachine &TM) { legacy::PassManager LtoPasses; LtoPasses.add(createTargetTransformInfoWrapperPass(TM.getTargetIRAnalysis())); -- 2.7.4