From 7d313d72efda1e8ced01cffed5c0c5ce00b2312c Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Thu, 25 Jun 2015 23:41:23 +0000 Subject: [PATCH] [ELF] Move ELF{32,64}{L,B}E typedefs to llvm. llvm-svn: 240731 --- llvm/include/llvm/Object/ELFTypes.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/llvm/include/llvm/Object/ELFTypes.h b/llvm/include/llvm/Object/ELFTypes.h index ea54cac36d10..8a648e509889 100644 --- a/llvm/include/llvm/Object/ELFTypes.h +++ b/llvm/include/llvm/Object/ELFTypes.h @@ -24,6 +24,11 @@ template struct ELFType { static const bool Is64Bits = is64Bits; }; +typedef ELFType ELF32LE; +typedef ELFType ELF32BE; +typedef ELFType ELF64LE; +typedef ELFType ELF64BE; + // Use an alignment of 2 for the typedefs since that is the worst case for // ELF files in archives. -- 2.34.1