Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / dsymutil / X86 / union-fwd-decl.test
blobc73db0e3f5532e5d90d2b9158e0bab20879ef099
1 Test binaries created with the following commands:
3 $ cat container.cpp
4 #include "container.h"
5 #include <stdlib.h>
7 struct Container_ivars {
8   // real definition here
9 };
11 ContainerPtr allocateContainer() {
12   Container *c = (Container *)malloc(sizeof(Container));
13   c->ivars = (Container_ivars *)malloc(sizeof(Container_ivars));
14   return c;
17 extern void doSomething(ContainerPtr);
19 int main() {
20   ContainerPtr c = allocateContainer();
21   doSomething(c);
22   return 0;
25 $ cat container.h
26 struct Container_ivars;
28 struct Container {
29   union {
30     struct Container_ivars *ivars;
31   };
34 typedef Container *ContainerPtr;
36 $ cat use.cpp
37 #include "container.h"
39 void doSomething(ContainerPtr c) {}
42 $ clang++ -O0 -g container.cpp -c -o container.o
43 $ clang++ -O0 -g use.cpp -c -o use.o
44 $ clang++ use.o container.o -o a.out
46 Note that the link order in the last command matters for this test.
48 RUN: dsymutil -oso-prepend-path %p/../Inputs %p/../Inputs/private/tmp/union/a.out -o %t.dSYM
49 RUN: llvm-dwarfdump %t.dSYM | FileCheck %s
51 CHECK: DW_TAG_compile_unit
53 CHECK:          DW_AT_name      ("Container_ivars")
54 CHECK-NEXT:     DW_AT_declaration       (true)
56 CHECK: DW_TAG_compile_unit
58 CHECK:          DW_AT_name      ("Container_ivars")
59 CHECK-NEXT:     DW_AT_byte_size (0x01)
60 CHECK-NEXT:     DW_AT_decl_file ("{{.*}}container.cpp")
61 CHECK-NEXT:     DW_AT_decl_line (4)