brintos

brintos / llvm-project-archived public Read only

0
0
Text · 205 B · 3630fbb Raw
10 lines · c
1// RUN: %clang_cc1 %s -Wno-error=return-type -emit-llvm     -o -2// RUN: %clang_cc1 %s -Wno-error=return-type -emit-llvm -O1 -o -3 4static int bar();5void foo() {6  int a = bar();7}8int bar(unsigned a) {9}10