mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
7 lines
172 B
Common Lisp
7 lines
172 B
Common Lisp
// RUN: %clang_cc1 %s -cl-single-precision-constant -emit-llvm -o - | FileCheck %s
|
|
|
|
float fn(float f) {
|
|
// CHECK: fmul float
|
|
// CHECK: fadd float
|
|
return f*2. + 1.;
|
|
}
|