mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 08:34:59 +00:00
c9bd88e681
This makes the C++ ABI depend entirely on the target: MS ABI for -win32 triples, Itanium otherwise. It's no longer possible to do weird combinations. To be able to run a test with a specific ABI without constraining it to a specific triple, new substitutions are added to lit: %itanium_abi_triple and %ms_abi_triple can be used to get the current target triple adjusted to the desired ABI. For example, if the test suite is running with the i686-pc-win32 target, %itanium_abi_triple will expand to i686-pc-mingw32. Differential Revision: http://llvm-reviews.chandlerc.com/D2545 llvm-svn: 199250
26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
// RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK-LABEL: define void @_Z1fPU8__strongP11objc_object(i8**)
|
|
void f(__strong id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPU6__weakP11objc_object(i8**)
|
|
void f(__weak id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPU15__autoreleasingP11objc_object(i8**)
|
|
void f(__autoreleasing id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPP11objc_object(i8**)
|
|
void f(__unsafe_unretained id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPKU8__strongP11objc_object(i8**)
|
|
void f(const __strong id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPKU6__weakP11objc_object(i8**)
|
|
void f(const __weak id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPKU15__autoreleasingP11objc_object(i8**)
|
|
void f(const __autoreleasing id *) {}
|
|
// CHECK-LABEL: define void @_Z1fPKP11objc_object(i8**)
|
|
void f(const __unsafe_unretained id *) {}
|
|
|
|
|
|
template<unsigned N> struct unsigned_c { };
|
|
|
|
// CHECK-LABEL: define weak_odr void @_Z1gIKvEvP10unsigned_cIXplszv1U8__bridgecvPT_v1U8__bridgecvP11objc_objectcvS3_Li0ELi1EEE
|
|
template<typename T>void g(unsigned_c<sizeof((__bridge T*)(__bridge id)(T*)0) + 1>*) {}
|
|
template void g<const void>(unsigned_c<sizeof(id) + 1> *);
|