diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-12-02 18:35:23 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-12-02 18:35:23 +0000 |
commit | e928533dae43a199476065b57b3c46632dbb6fd6 (patch) | |
tree | f05c82cac12adbfdccae8305812831194f5d4c9e | |
parent | e25b06fa233a81f216d9368ef0694c2fbbdad15f (diff) | |
download | bcm5719-llvm-e928533dae43a199476065b57b3c46632dbb6fd6.tar.gz bcm5719-llvm-e928533dae43a199476065b57b3c46632dbb6fd6.zip |
AMDGPU: Fix msan test failure
llvm-svn: 254527
-rw-r--r-- | llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp b/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp index 21c7da66323..7c595d5a83e 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp +++ b/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp @@ -13,6 +13,7 @@ AMDGPUMachineFunction::AMDGPUMachineFunction(const MachineFunction &MF) : MachineFunctionInfo(), ShaderType(ShaderType::COMPUTE), LDSSize(0), + ABIArgOffset(0), ScratchSize(0), IsKernel(true) { Attribute A = MF.getFunction()->getFnAttribute(ShaderTypeAttribute); |