hanchenye-llvm-project/clang/test/CodeGen/2007-06-18-SextAttrAggregate.c

13 lines
165 B
C

// RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s
// PR1513
struct s{
long a;
long b;
};
void f(struct s a, char *b, signed char C) {
// CHECK: i8 signext
}