Clang Project

clang_source_code/test/CodeGen/2008-08-04-void-pointer-arithmetic.c
1// RUN: %clang_cc1 -emit-llvm -o - %s
2// <rdar://problem/6122967>
3
4int f0(void *a, void *b) {
5  return a - b;
6}
7