brintos

brintos / llvm-project-archived public Read only

0
0
Text · 244 B · 8006750 Raw
11 lines · cpp
1 2// RUN: %clang_cc1 %s3 4// FIXME: These should not crash!5// XFAIL: *6 7void aa_fn_ptr(char* (*member)(char*)  __attribute__((alloc_align(1))));8 9struct Test;10void aa_member_fn_ptr(char* (Test::*member)(char*)  __attribute__((alloc_align(1))));11