diff options
author | Tim Rowley <[email protected]> | 2017-03-21 11:42:31 -0500 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2017-03-22 13:45:35 -0500 |
commit | 08f864abd9e241c7db9c99212a66cdad69bdd4d8 (patch) | |
tree | e616b261dbc7f1850efe6c0e37868fe31cdbba70 /src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp | |
parent | 7a5b5f52260e33681b2aff6e544520c44f8710c0 (diff) |
swr: [rasterizer jitter] fix llvm >= 5.0 build break
Function::getArgumentList() doesn't exist anymore, switch to using
arg_begin() (existed back to at least llvm-3.6.0).
Reviewed-by: Vedran Miletić <[email protected]>
CC: <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp b/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp index 494d8cfc89d..2c19321fb3f 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp +++ b/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp @@ -285,7 +285,7 @@ struct StreamOutJit : public Builder IRB()->SetInsertPoint(entry); // arguments - auto argitr = soFunc->getArgumentList().begin(); + auto argitr = soFunc->arg_begin(); Value* pSoCtx = &*argitr++; pSoCtx->setName("pSoCtx"); |