We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DXILPrepare.cpp adds NoOp bitcasts that are causing problems in the validator
llvm-project/llvm/lib/Target/DirectX/DXILPrepare.cpp
Lines 216 to 245 in c7f350f
It is changing
store float 2.000000e+00, ptr addrspace(3) getelementptr (float, ptr addrspace(3) @arrayofVecData.scalarized.1dim, i32 1), align 4
to:
%2 = bitcast ptr addrspace(3) getelementptr (float, ptr addrspace(3) @arrayofVecData.scalarized.1dim, i32 1) to ptr addrspace(3) store float 2.000000e+00, ptr addrspace(3) %2, align 4
commenting out these no ops resolves all 848 ptr bitcast errors.
The text was updated successfully, but these errors were encountered:
farzonl
No branches or pull requests
DXILPrepare.cpp adds NoOp bitcasts that are causing problems in the validator
llvm-project/llvm/lib/Target/DirectX/DXILPrepare.cpp
Lines 216 to 245 in c7f350f
It is changing
to:
commenting out these no ops resolves all 848 ptr bitcast errors.
The text was updated successfully, but these errors were encountered: