diff options
author | Eric Christopher <echristo@gmail.com> | 2013-01-09 01:57:54 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-01-09 01:57:54 +0000 |
commit | e3ab3d0e2ccbb1121cad742e1acb12175fa79f6e (patch) | |
tree | 262d31e8f89eed7eb5fa78864d4b0602be905515 /llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp | |
parent | ce0cfce77592a35c81a70a2986d1bc5639d70c07 (diff) | |
download | bcm5719-llvm-e3ab3d0e2ccbb1121cad742e1acb12175fa79f6e.tar.gz bcm5719-llvm-e3ab3d0e2ccbb1121cad742e1acb12175fa79f6e.zip |
These functions have default arguments of 0 for the last arg. Use
them.
llvm-svn: 171933
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp index b802853568f..ec1c7a38855 100644 --- a/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp @@ -100,7 +100,7 @@ void OcamlGCMetadataPrinter::finishAssembly(AsmPrinter &AP) { EmitCamlGlobal(getModule(), AP, "data_end"); // FIXME: Why does ocaml emit this?? - AP.OutStreamer.EmitIntValue(0, IntPtrSize, 0); + AP.OutStreamer.EmitIntValue(0, IntPtrSize); AP.OutStreamer.SwitchSection(AP.getObjFileLowering().getDataSection()); EmitCamlGlobal(getModule(), AP, "frametable"); |