diff options
author | Andrew V. Tischenko <andrew.v.tischenko@gmail.com> | 2017-04-14 07:44:23 +0000 |
---|---|---|
committer | Andrew V. Tischenko <andrew.v.tischenko@gmail.com> | 2017-04-14 07:44:23 +0000 |
commit | 75745d0c3e612b54af6b1cfb62be69356ad155a2 (patch) | |
tree | a3f1747fb0a43a563d84555b421355b9ea80059d /llvm/lib/MC/MCObjectStreamer.cpp | |
parent | 334f8fbe4766f507629003a42caa3f5f143b1e90 (diff) | |
download | bcm5719-llvm-75745d0c3e612b54af6b1cfb62be69356ad155a2.tar.gz bcm5719-llvm-75745d0c3e612b54af6b1cfb62be69356ad155a2.zip |
This patch closes PR#32216: Better testing of schedule model instruction latencies/throughputs.
The details are here: https://reviews.llvm.org/D30941
llvm-svn: 300311
Diffstat (limited to 'llvm/lib/MC/MCObjectStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCObjectStreamer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCObjectStreamer.cpp b/llvm/lib/MC/MCObjectStreamer.cpp index 726326be2ee..f7f2253256e 100644 --- a/llvm/lib/MC/MCObjectStreamer.cpp +++ b/llvm/lib/MC/MCObjectStreamer.cpp @@ -238,7 +238,7 @@ bool MCObjectStreamer::mayHaveInstructions(MCSection &Sec) const { } void MCObjectStreamer::EmitInstruction(const MCInst &Inst, - const MCSubtargetInfo &STI) { + const MCSubtargetInfo &STI, bool) { MCStreamer::EmitInstruction(Inst, STI); MCSection *Sec = getCurrentSectionOnly(); |