minix/external/bsd/llvm/dist/clang/test/CodeGen/uint128_t.c
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

18 lines
272 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - -triple=x86_64-apple-darwin9
typedef unsigned long long uint64_t;
extern uint64_t numer;
extern uint64_t denom;
uint64_t
f(uint64_t val)
{
__uint128_t tmp;
tmp = val;
tmp *= numer;
tmp /= denom;
return tmp;
}