aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/ELF/common.s
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-11-14 21:11:16 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-11-14 21:11:16 +0000
commit55d02f3a138badd5b1f96240b4d4b416d9026e2c (patch)
tree62defb06614e1dff131d8e61ac7493cbb167ef50 /test/MC/ELF/common.s
parent8d63ba8260d26a256a082089e8fe8fcd38b5b949 (diff)
downloadexternal_llvm-55d02f3a138badd5b1f96240b4d4b416d9026e2c.zip
external_llvm-55d02f3a138badd5b1f96240b4d4b416d9026e2c.tar.gz
external_llvm-55d02f3a138badd5b1f96240b4d4b416d9026e2c.tar.bz2
Fix another case of a .comm directive without a corresponding .type
directive. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119073 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ELF/common.s')
-rw-r--r--test/MC/ELF/common.s21
1 files changed, 17 insertions, 4 deletions
diff --git a/test/MC/ELF/common.s b/test/MC/ELF/common.s
index 96865be..0ffa6f4 100644
--- a/test/MC/ELF/common.s
+++ b/test/MC/ELF/common.s
@@ -30,11 +30,24 @@
// CHECK-NEXT: ('st_value', 0x00000001)
// CHECK-NEXT: ('st_size', 0x00000001)
+ .local common6
+ .comm common6,8,16
+
+// CHECK: # Symbol 0x00000003
+// CHECK-NEXT: (('st_name', 0x00000011) # 'common6'
+// CHECK-NEXT: ('st_bind', 0x00000000)
+// CHECK-NEXT: ('st_type', 0x00000001)
+// CHECK-NEXT: ('st_other', 0x00000000)
+// CHECK-NEXT: ('st_shndx', 0x00000003)
+// CHECK-NEXT: ('st_value', 0x00000010)
+// CHECK-NEXT: ('st_size', 0x00000008)
+// CHECK-NEXT: ),
+
// Test that without an explicit .local we produce a global.
.type common3,@object
.comm common3,4,4
-// CHECK: ('st_name', 0x00000011) # 'common3'
+// CHECK: ('st_name', 0x00000019) # 'common3'
// CHECK-NEXT: ('st_bind', 0x00000001)
// CHECK-NEXT: ('st_type', 0x00000001)
// CHECK-NEXT: ('st_other', 0x00000000)
@@ -54,7 +67,7 @@ foo:
.type common4,@object
.comm common4,40,16
-// CHECK: ('st_name', 0x0000001d) # 'common4'
+// CHECK: ('st_name', 0x00000025) # 'common4'
// CHECK-NEXT: ('st_bind', 0x00000001)
// CHECK-NEXT: ('st_type', 0x00000001)
// CHECK-NEXT: ('st_other', 0x00000000)
@@ -64,8 +77,8 @@ foo:
.comm common5,4,4
-// CHECK: # Symbol 0x00000008
-// CHECK-NEXT: (('st_name', 0x00000025) # 'common5'
+// CHECK: # Symbol 0x00000009
+// CHECK-NEXT: (('st_name', 0x0000002d) # 'common5'
// CHECK-NEXT: ('st_bind', 0x00000001)
// CHECK-NEXT: ('st_type', 0x00000001)
// CHECK-NEXT: ('st_other', 0x00000000)