summaryrefslogtreecommitdiff
path: root/clang/test/CodeGenOpenCL/fpmath.cl
blob: 704fcd739ac47cb51979b6a8fa8af2354006f056 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

typedef __attribute__(( ext_vector_type(4) )) float float4;

float spscalardiv(float a, float b) {
  // CHECK: @spscalardiv
  // CHECK: fdiv{{.*}}, !fpmath ![[MD:[0-9]+]]
  return a / b;
}

float4 spvectordiv(float4 a, float4 b) {
  // CHECK: @spvectordiv
  // CHECK: fdiv{{.*}}, !fpmath ![[MD]]
  return a / b;
}

#pragma OPENCL EXTENSION cl_khr_fp64 : enable

double dpscalardiv(double a, double b) {
  // CHECK: @dpscalardiv
  // CHECK-NOT: !fpmath
  return a / b;
}

// CHECK: ![[MD]] = metadata !{float 2.500000e+00}