aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/xfail-alloc-align-fn-pointers.cpp
blob: 80067500284b1ed868878f079000574f582dc8cc (plain)
1
2
3
4
5
6
7
8
9
10

// RUN: %clang_cc1 %s

// FIXME: These should not crash!
// XFAIL: *

void aa_fn_ptr(char* (*member)(char*)  __attribute__((alloc_align(1))));

struct Test;
void aa_member_fn_ptr(char* (Test::*member)(char*)  __attribute__((alloc_align(1))));