Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Unified Diff: lib/MC/ELFObjectWriter.cpp

Issue 3770019: updated .ARM.attributes work (Closed) Base URL: https://llvm.org/svn/llvm-project/llvm/trunk/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/llvm/Support/ELF.h ('k') | lib/Target/ARM/ARMAsmBackend.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/MC/ELFObjectWriter.cpp
===================================================================
--- lib/MC/ELFObjectWriter.cpp (revision 116749)
+++ lib/MC/ELFObjectWriter.cpp (working copy)
@@ -1199,6 +1199,17 @@
case ELF::SHT_HASH:
case ELF::SHT_GROUP:
case ELF::SHT_SYMTAB_SHNDX:
+
+ case ELF::SHT_ARM_EXIDX:
+ case ELF::SHT_ARM_PREEMPTMAP:
+ assert(0 && "FIXME: sh_type value not supported!");
+ break;
+
+ case ELF::SHT_ARM_ATTRIBUTES:
+ break;
+
+ case ELF::SHT_ARM_DEBUGOVERLAY:
+ case ELF::SHT_ARM_OVERLAYSECTION:
default:
assert(0 && "FIXME: sh_type value not supported!");
break;
« no previous file with comments | « include/llvm/Support/ELF.h ('k') | lib/Target/ARM/ARMAsmBackend.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698