17 lines · plain
1;;===----------------------------------------------------------------------===;;2;3; Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4; See https://llvm.org/LICENSE.txt for license information.5; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6;7;;===----------------------------------------------------------------------===;;8 9@__CLC_SUBNORMAL_DISABLE = external global i110 11define i1 @__clc_subnormals_disabled() #0 {12 %disable = load i1, i1* @__CLC_SUBNORMAL_DISABLE13 ret i1 %disable14}15 16attributes #0 = { alwaysinline }17