summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-01-09 01:57:54 +0000
committerEric Christopher <echristo@gmail.com>2013-01-09 01:57:54 +0000
commite3ab3d0e2ccbb1121cad742e1acb12175fa79f6e (patch)
tree262d31e8f89eed7eb5fa78864d4b0602be905515 /llvm/lib/Target/ARM/ARMAsmPrinter.cpp
parentce0cfce77592a35c81a70a2986d1bc5639d70c07 (diff)
downloadbcm5719-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/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMAsmPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
index fc6ac90f6e0..d66b2994c02 100644
--- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
@@ -182,7 +182,7 @@ namespace {
const size_t TagHeaderSize = 1 + 4;
Streamer.EmitIntValue(VendorHeaderSize + TagHeaderSize + ContentsSize, 4);
- Streamer.EmitBytes(CurrentVendor, 0);
+ Streamer.EmitBytes(CurrentVendor);
Streamer.EmitIntValue(0, 1); // '\0'
Streamer.EmitIntValue(ARMBuildAttrs::File, 1);
@@ -199,7 +199,7 @@ namespace {
Streamer.EmitULEB128IntValue(item.IntValue, 0);
break;
case AttributeItemType::TextAttribute:
- Streamer.EmitBytes(item.StringValue.upper(), 0);
+ Streamer.EmitBytes(item.StringValue.upper());
Streamer.EmitIntValue(0, 1); // '\0'
break;
}
OpenPOWER on IntegriCloud