brintos

brintos / llvm-project-archived public Read only

0
0
Text · 356 B · c9d7615 Raw
11 lines · c
1// REQUIRES: msp430-registered-target2// RUN: %clang_cc1 -triple msp430-unknown-unknown -emit-llvm %s -o - | FileCheck %s3 4int test_builtin_flt_rounds() {5  // CHECK:     [[V0:[%A-Za-z0-9.]+]] = call i32 @llvm.get.rounding()6  // CHECK-DAG: [[V1:[%A-Za-z0-9.]+]] = trunc i32 [[V0]] to i167  // CHECK-DAG: ret i16 [[V1]]8  return __builtin_flt_rounds();9}10 11