diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2015-07-28 18:09:55 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2015-07-28 18:09:55 +0000 |
| commit | 916cea5682a468db21b2872c31b5bef87bb67f17 (patch) | |
| tree | 9f93b1999786a3506730dd6010f8152c00c400ba /llvm/lib | |
| parent | b241d928bd884d418445c6c763c4df9ffaa9303f (diff) | |
| download | bcm5719-llvm-916cea5682a468db21b2872c31b5bef87bb67f17.tar.gz bcm5719-llvm-916cea5682a468db21b2872c31b5bef87bb67f17.zip | |
AMDGPU: Fix return type of getImplicitParameterOffset.
Patch by Zoltan Gilian <zoltan.gilian@gmail.com>
llvm-svn: 243459
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h b/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h index 478b2035fd7..1ce391e9816 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h +++ b/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h @@ -216,7 +216,7 @@ public: /// \brief Helper function that returns the byte offset of the given /// type of implicit parameter. - unsigned getImplicitParameterOffset(const AMDGPUMachineFunction *MFI, + uint32_t getImplicitParameterOffset(const AMDGPUMachineFunction *MFI, const ImplicitParameter Param) const; }; |

