Revert accidental commit.
[oota-llvm.git] / test / MC / ELF / common.s
index 8d92d982bf7257dd0d22b59afcd2ca9a21856268..046306e3d37dbb2eb985b820d51f357218a3ba42 100644 (file)
@@ -8,13 +8,13 @@
        .local  common1
        .comm   common1,1,1
 
-// CHECK: ('st_name', 0x1) # 'common1'
+// CHECK: ('st_name', 0x00000001) # 'common1'
 // CHECK-NEXT: ('st_bind', 0x0)
 // CHECK-NEXT: ('st_type', 0x1)
-// CHECK-NEXT: ('st_other', 0x0)
+// CHECK-NEXT: ('st_other', 0x00)
 // CHECK-NEXT: ('st_shndx',
-// CHECK-NEXT: ('st_value', 0x0)
-// CHECK-NEXT: ('st_size', 0x1)
+// CHECK-NEXT: ('st_value', 0x0000000000000000)
+// CHECK-NEXT: ('st_size', 0x0000000000000001)
 
 
 // Same as common1, but with directives in a different order.
        .type   common2,@object
        .comm   common2,1,1
 
-// CHECK: ('st_name', 0x9) # 'common2'
+// CHECK: ('st_name', 0x00000009) # 'common2'
 // CHECK-NEXT: ('st_bind', 0x0)
 // CHECK-NEXT: ('st_type', 0x1)
-// CHECK-NEXT: ('st_other', 0x0)
+// CHECK-NEXT: ('st_other', 0x00)
 // CHECK-NEXT: ('st_shndx',
-// CHECK-NEXT: ('st_value', 0x1)
-// CHECK-NEXT: ('st_size', 0x1)
+// CHECK-NEXT: ('st_value', 0x0000000000000001)
+// CHECK-NEXT: ('st_size', 0x0000000000000001)
+
+        .local common6
+        .comm  common6,8,16
+
+// CHECK:      # Symbol 3
+// CHECK-NEXT: (('st_name', 0x00000011) # 'common6'
+// CHECK-NEXT:  ('st_bind', 0x0)
+// CHECK-NEXT:  ('st_type', 0x1)
+// CHECK-NEXT:  ('st_other', 0x00)
+// CHECK-NEXT:  ('st_shndx', 0x0004)
+// CHECK-NEXT:  ('st_value', 0x0000000000000010)
+// CHECK-NEXT:  ('st_size', 0x0000000000000008)
+// CHECK-NEXT: ),
 
 // Test that without an explicit .local we produce a global.
        .type   common3,@object
        .comm   common3,4,4
 
-// CHECK: ('st_name', 0x11) # 'common3'
+// CHECK: ('st_name', 0x00000019) # 'common3'
 // CHECK-NEXT: ('st_bind', 0x1)
 // CHECK-NEXT: ('st_type', 0x1)
-// CHECK-NEXT: ('st_other', 0x0)
+// CHECK-NEXT: ('st_other', 0x00)
 // CHECK-NEXT: ('st_shndx', 0xfff2)
-// CHECK-NEXT: ('st_value', 0x4)
-// CHECK-NEXT: ('st_size', 0x4)
+// CHECK-NEXT: ('st_value', 0x0000000000000004)
+// CHECK-NEXT: ('st_size', 0x0000000000000004)
 
 
 // Test that without an explicit .local we produce a global, even if the first
@@ -54,10 +67,22 @@ foo:
        .type   common4,@object
        .comm   common4,40,16
 
-// CHECK: ('st_name', 0x1d) # 'common4'
+// CHECK: ('st_name', 0x00000025) # 'common4'
 // CHECK-NEXT: ('st_bind', 0x1)
 // CHECK-NEXT: ('st_type', 0x1)
-// CHECK-NEXT: ('st_other', 0x0)
+// CHECK-NEXT: ('st_other', 0x00)
 // CHECK-NEXT: ('st_shndx', 0xfff2)
-// CHECK-NEXT: ('st_value', 0x10)
-// CHECK-NEXT: ('st_size', 0x28)
+// CHECK-NEXT: ('st_value', 0x0000000000000010)
+// CHECK-NEXT: ('st_size', 0x0000000000000028)
+
+        .comm  common5,4,4
+
+// CHECK:      # Symbol 9
+// CHECK-NEXT: (('st_name', 0x0000002d) # 'common5'
+// CHECK-NEXT:  ('st_bind', 0x1)
+// CHECK-NEXT:  ('st_type', 0x1)
+// CHECK-NEXT:  ('st_other', 0x00)
+// CHECK-NEXT:  ('st_shndx', 0xfff2)
+// CHECK-NEXT:  ('st_value', 0x0000000000000004)
+// CHECK-NEXT:  ('st_size', 0x0000000000000004)
+// CHECK-NEXT: ),