mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 08:34:59 +00:00
b601c96892
runtime to gnustep from gnu. Fix EH for the GCC runtime. llvm-svn: 159684
6 lines
170 B
Objective-C
6 lines
170 B
Objective-C
// RUN: %clang -S -emit-llvm -fobjc-runtime=gcc -o %t %s
|
|
typedef enum { A1, A2 } A;
|
|
typedef struct { A a : 1; } B;
|
|
@interface Obj { B *b; } @end
|
|
@implementation Obj @end
|