ARM: change parameter names of the ELFARMAsmBackend constructor
authorChristian Pirker <cpirker@a-bix.com>
Mon, 31 Mar 2014 16:06:39 +0000 (16:06 +0000)
committerChristian Pirker <cpirker@a-bix.com>
Mon, 31 Mar 2014 16:06:39 +0000 (16:06 +0000)
I removed the underscore at the beginning of the parameter name,
because of a comment from Tim.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205215 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp

index 19c717f5f83e9fd97998bc3b6a8e8c101c91d304..f01951375921f36d4c0e76c3778d9f7ea95a81bd 100644 (file)
@@ -744,8 +744,8 @@ class ELFARMAsmBackend : public ARMAsmBackend {
 public:
   uint8_t OSABI;
   ELFARMAsmBackend(const Target &T, const StringRef TT,
-                   uint8_t _OSABI, bool _IsLittle)
-    : ARMAsmBackend(T, TT, _IsLittle), OSABI(_OSABI) { }
+                   uint8_t OSABI, bool IsLittle)
+    : ARMAsmBackend(T, TT, IsLittle), OSABI(OSABI) { }
 
   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
     return createARMELFObjectWriter(OS, OSABI, isLittle());