StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGen / uint128_t.c
blob92cb5faba4a012304e22a4a6d5af270f0ebb9918
1 // RUN: %clang_cc1 %s -emit-llvm -o - -triple=x86_64-apple-darwin9
3 typedef unsigned long long uint64_t;
4 extern uint64_t numer;
5 extern uint64_t denom;
7 uint64_t
8 f(uint64_t val)
10 __uint128_t tmp;
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
16 return tmp;