================ @@ -0,0 +1,49 @@ +// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple dxil-pc-shadermodel6.2-library %s -fnative-half-type -emit-llvm -O1 -o - | FileCheck %s + +// CHECK: define {{.*}}test_ints{{.*}}(i16 {{.*}} [[VAL:%.*]]){{.*}} +// CHECK-NOT: bitcast +// CHECK: ret i16 [[VAL]] +int16_t test_int(int16_t p0) +{ + return asint16(p0); +} + +//CHECK: define {{.*}}test_uint{{.*}}(i16 {{.*}} [[VAL:%.*]]){{.*}} ---------------- farzonl wrote:
Just noticed this sorry for the late change request but thisis a case that makes more sense to do `CHECK-LABEL:` for the start of all these functions. That might impact how you are preserving `VAL` so also look into `CHECK-SAME` There should be other examples in the codebase. https://github.com/llvm/llvm-project/pull/131900 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits