hanchenye-llvm-project/clang/test/CodeGen/compound.c

17 lines
169 B
C

// RUN: clang %s -emit-llvm
int A;
long long B;
int C;
int *P;
void test1() {
C = (A /= B);
P -= 4;
C = P - (P+10);
}
short x;
void test2(char c) { x += c; }