]> granicus.if.org Git - llvm/commitdiff
[SystemZ] Add support for the .word directive.
authorZhan Jun Liau <zhanjunl@ca.ibm.com>
Fri, 8 Jul 2016 16:50:02 +0000 (16:50 +0000)
committerZhan Jun Liau <zhanjunl@ca.ibm.com>
Fri, 8 Jul 2016 16:50:02 +0000 (16:50 +0000)
Summary: Branch off the work to add support for the .word directive,
using addAliasForDirective.

Reviewers: koriakin

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D22142

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274878 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
test/MC/SystemZ/word.s [new file with mode: 0644]

index a894bea91b6cf7a4fcedd12a7177eb4589d37329..3923614c89d36b70a4101709776d3fcea1bb8b5a 100644 (file)
@@ -391,6 +391,9 @@ public:
     : MCTargetAsmParser(Options, sti), Parser(parser) {
     MCAsmParserExtension::Initialize(Parser);
 
+    // Alias the .word directive to .short.
+    parser.addAliasForDirective(".word", ".short");
+
     // Initialize the set of available features.
     setAvailableFeatures(ComputeAvailableFeatures(getSTI().getFeatureBits()));
   }
diff --git a/test/MC/SystemZ/word.s b/test/MC/SystemZ/word.s
new file mode 100644 (file)
index 0000000..70f009a
--- /dev/null
@@ -0,0 +1,24 @@
+# RUN: llvm-mc -triple s390x-linux-gnu -filetype=obj %s | \
+# RUN: llvm-readobj -s -sd | FileCheck %s
+
+.section word, "aw"
+.word 0xabcd
+
+# CHECK:        Section {
+# CHECK:          Name: word
+# CHECK-NEXT:     Type: SHT_PROGBITS
+# CHECK-NEXT:     Flags [
+# CHECK-NEXT:       SHF_ALLOC
+# CHECK-NEXT:       SHF_WRITE
+# CHECK-NEXT:     ]
+# CHECK-NEXT:     Address: 0x0
+# CHECK-NEXT:     Offset:
+# CHECK-NEXT:     Size: 2
+# CHECK-NEXT:     Link: 0
+# CHECK-NEXT:     Info: 0
+# CHECK-NEXT:     AddressAlignment:
+# CHECK-NEXT:     EntrySize: 0
+# CHECK-NEXT:     SectionData (
+# CHECK-NEXT:       0000: ABCD
+# CHECK-NEXT:     )
+# CHECK-NEXT:   }