// This file can be used to see what a native C compiler is generating for a
// variety of interesting operations.
//// RUN: %clang_cc1 -emit-llvm %s -o -
unsignedintudiv(unsignedintX,unsignedintY){return X/Y;}intsdiv(intX,intY){return X/Y;}unsignedinturem(unsignedintX,unsignedintY){return X%Y;}intsrem(intX,intY){return X%Y;}_Boolsetlt(intX,intY){return X < Y;}_Boolsetgt(intX,intY){return X > Y;}