diff options
Diffstat (limited to 'lib/compilers/llvm-mca.js')
-rw-r--r-- | lib/compilers/llvm-mca.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/compilers/llvm-mca.js b/lib/compilers/llvm-mca.js index d320352a4..9fd419cbf 100644 --- a/lib/compilers/llvm-mca.js +++ b/lib/compilers/llvm-mca.js @@ -22,14 +22,18 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -import { AnalysisTool } from './analysis-tool'; -import { ClangParser } from './argument-parsers'; +import {AnalysisTool} from './analysis-tool'; +import {ClangParser} from './argument-parsers'; // Plain compiler, which just runs the tool and returns whatever the output was export class LLVMmcaTool extends AnalysisTool { - static get key() { return 'llvm-mca'; } + static get key() { + return 'llvm-mca'; + } - supportsObjdump() { return false; } + supportsObjdump() { + return false; + } getOutputFilenameArgs(filename) { // TODO: Some tools might require an argument of the form -arg=filename |