commit | 6d8294209287eb36951f8445abe1129e015cd312 | [log] [tgz] |
---|---|---|
author | Anton Korobeynikov <asl@math.spbu.ru> | Wed Jul 09 13:22:17 2008 +0000 |
committer | Anton Korobeynikov <asl@math.spbu.ru> | Wed Jul 09 13:22:17 2008 +0000 |
tree | 04bf731cc3c38f031d5e3079bacf76d9ea843a1b | |
parent | f447e3d31128a68e3028019385eb9ecfedb8e4e6 [diff] [blame] |
Print entity size for mergeable sections git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53303 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp index c900ac9..b0c6f1c 100644 --- a/lib/Target/X86/X86TargetAsmInfo.cpp +++ b/lib/Target/X86/X86TargetAsmInfo.cpp
@@ -337,7 +337,8 @@ else Flags += ",@progbits"; - // FIXME: entity size for mergeable sections + if (unsigned entitySize = SectionFlags::getEntitySize(flags)) + Flags += "," + utostr(entitySize); return Flags; }