blob: 8fb409b66646d4fd04827cf9cae7728a33ddbc69 [file] [log] [blame]
Anton Korobeynikov81cff312019-01-17 15:21:55 +00001// REQUIRES: msp430-registered-target
2// RUN: %clang_cc1 -triple msp430-unknown-unknown -emit-llvm %s -o - | FileCheck %s
3
4int test_builtin_flt_rounds() {
5 // CHECK: [[V0:[%A-Za-z0-9.]+]] = call i32 @llvm.flt.rounds()
6 // CHECK-DAG: [[V1:[%A-Za-z0-9.]+]] = trunc i32 [[V0]] to i16
7 // CHECK-DAG: ret i16 [[V1]]
8 return __builtin_flt_rounds();
9}
10