blob: 92cb5faba4a012304e22a4a6d5af270f0ebb9918 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm -o - -triple=x86_64-apple-darwin9
Chris Lattner2df9ced2009-04-30 02:43:43 +00002
3typedef unsigned long long uint64_t;
4extern uint64_t numer;
5extern uint64_t denom;
6
7uint64_t
8f(uint64_t val)
9{
10 __uint128_t tmp;
11
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
15
16 return tmp;
17}
18