You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
302 B
7 lines
302 B
// RUN: %clang_cc1 -fvisibility default -o - -emit-interface-stubs %s | FileCheck -check-prefix=CHECK-TAPI %s
|
|
// RUN: %clang -fvisibility=default -c -o - %s | llvm-nm - 2>&1 | FileCheck -check-prefix=CHECK-SYMBOLS %s
|
|
|
|
// CHECK-TAPI: data", Type: Object, Size: 4 }
|
|
// CHECK-SYMBOLS: data
|
|
int data = 42;
|