commit | ce0cfce77592a35c81a70a2986d1bc5639d70c07 | [log] [tgz] |
---|---|---|
author | Eric Christopher <echristo@gmail.com> | Wed Jan 09 01:35:34 2013 +0000 |
committer | Eric Christopher <echristo@gmail.com> | Wed Jan 09 01:35:34 2013 +0000 |
tree | 0d9881b30b07ce85929f2d557f982bdf85641d0b | |
parent | 4c66f87e8ef4e242e771ad68bb5fba14f6687c26 [diff] [blame] |
These functions have default arguments of 0 for the last arg. Use them and add one where it seemed obvious that we wanted one. llvm-svn: 171932
diff --git a/llvm/lib/MC/MCObjectStreamer.cpp b/llvm/lib/MC/MCObjectStreamer.cpp index d205a8c..6f2dce6 100644 --- a/llvm/lib/MC/MCObjectStreamer.cpp +++ b/llvm/lib/MC/MCObjectStreamer.cpp
@@ -315,7 +315,7 @@ if (!Delta->EvaluateAsAbsolute(Res, getAssembler())) return true; - EmitFill(Res, Value, 0); + EmitFill(Res, Value); return false; }