change from using 2 bits to 4 bits, as 2 bits arent enough to hold the enumeration...
authorShankar Easwaran <shankare@codeaurora.org>
Wed, 23 Jan 2013 15:11:22 +0000 (15:11 +0000)
committerShankar Easwaran <shankare@codeaurora.org>
Wed, 23 Jan 2013 15:11:22 +0000 (15:11 +0000)
llvm-svn: 173266

lld/include/lld/Core/LinkerOptions.h

index 72aafcf..968ca4e 100644 (file)
@@ -179,7 +179,7 @@ struct LinkerOptions {
   std::string _outputPath;
   std::string _entrySymbol;
   uint64_t _baseAddress;
-  OutputKind _outputKind:2;
+  OutputKind _outputKind:4;
   /// \brief -###
   unsigned _outputCommands : 1;
   unsigned _outputYAML : 1;