The formatting of the flags is weird. How about just one space between the enum and the '='?<br><br>Thanks.<div><br></div><div>-eric</div><br><div class="gmail_quote">On Thu Oct 30 2014 at 8:12:11 AM Simon Atanasyan <<a href="mailto:simon@atanasyan.com">simon@atanasyan.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: atanasyan<br>
Date: Thu Oct 30 09:56:02 2014<br>
New Revision: 220910<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=220910&view=rev" target="_blank">http://llvm.org/viewvc/llvm-<u></u>project?rev=220910&view=rev</a><br>
Log:<br>
[Mips] Add new Mips specific e_flags.<br>
<br>
No functional changes.<br>
<br>
Modified:<br>
    llvm/trunk/include/llvm/<u></u>Support/ELF.h<br>
<br>
Modified: llvm/trunk/include/llvm/<u></u>Support/ELF.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ELF.h?rev=220910&r1=220909&r2=220910&view=diff" target="_blank">http://llvm.org/viewvc/llvm-<u></u>project/llvm/trunk/include/<u></u>llvm/Support/ELF.h?rev=220910&<u></u>r1=220909&r2=220910&view=diff</a><br>
==============================<u></u>==============================<u></u>==================<br>
--- llvm/trunk/include/llvm/<u></u>Support/ELF.h (original)<br>
+++ llvm/trunk/include/llvm/<u></u>Support/ELF.h Thu Oct 30 09:56:02 2014<br>
@@ -876,7 +876,13 @@ enum : unsigned {<br>
   EF_MIPS_ABI2      = 0x00000020,<br>
   EF_MIPS_32BITMODE = 0x00000100,<br>
   EF_MIPS_NAN2008   = 0x00000400, // Uses IEE 754-2008 NaN encoding<br>
+<br>
+  // ABI flags<br>
   EF_MIPS_ABI_O32   = 0x00001000, // This file follows the first MIPS 32 bit ABI<br>
+  EF_MIPS_ABI_O64    = 0x00002000, // O32 ABI extended for 64-bit architecture.<br>
+  EF_MIPS_ABI_EABI32 = 0x00003000, // EABI in 32 bit mode.<br>
+  EF_MIPS_ABI_EABI64 = 0x00004000, // EABI in 64 bit mode.<br>
+  EF_MIPS_ABI        = 0x0000f000, // Mask for selecting EF_MIPS_ABI_ variant.<br>
<br>
   //ARCH_ASE<br>
   EF_MIPS_MICROMIPS = 0x02000000, // microMIPS<br>
<br>
<br>
______________________________<u></u>_________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@cs.uiuc.edu" target="_blank">llvm-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/llvm-commits</a><br>
</blockquote></div>