brintos

brintos / llvm-project-archived public Read only

0
0
Text · 174 B · f043ab7 Raw
13 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3struct S {4  int i;5  short s1, s2;6};7 8struct S func_returning_struct(void);9 10void loop(void) {11  func_returning_struct();12}13