aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCStreamer.cpp
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2022-11-24 15:23:06 +0000
committerGuillaume Chatelet <gchatelet@google.com>2022-11-24 16:09:44 +0000
commit6c09ea3fdd6fb8001a079bc892aa095e9693b932 (patch)
tree1c803f13b31cbeb2135389f77c82a6f3b5e96480 /llvm/lib/MC/MCStreamer.cpp
parentb9e3f5f864fb1944be60725aca400a9332ac6aa5 (diff)
downloadllvm-6c09ea3fdd6fb8001a079bc892aa095e9693b932.zip
llvm-6c09ea3fdd6fb8001a079bc892aa095e9693b932.tar.gz
llvm-6c09ea3fdd6fb8001a079bc892aa095e9693b932.tar.bz2
[Alignment][NFC] Use Align in MCStreamer::emitValueToAlignment
Differential Revision: https://reviews.llvm.org/D138674
Diffstat (limited to 'llvm/lib/MC/MCStreamer.cpp')
-rw-r--r--llvm/lib/MC/MCStreamer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCStreamer.cpp b/llvm/lib/MC/MCStreamer.cpp
index f022027..805ca57 100644
--- a/llvm/lib/MC/MCStreamer.cpp
+++ b/llvm/lib/MC/MCStreamer.cpp
@@ -1219,7 +1219,7 @@ void MCStreamer::emitSLEB128Value(const MCExpr *Value) {}
void MCStreamer::emitFill(const MCExpr &NumBytes, uint64_t Value, SMLoc Loc) {}
void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
SMLoc Loc) {}
-void MCStreamer::emitValueToAlignment(unsigned ByteAlignment, int64_t Value,
+void MCStreamer::emitValueToAlignment(Align Alignment, int64_t Value,
unsigned ValueSize,
unsigned MaxBytesToEmit) {}
void MCStreamer::emitCodeAlignment(Align Alignment, const MCSubtargetInfo *STI,