projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a1b15c
)
intel/aubinator: fix 32bit shift overflow warning
author
Grazvydas Ignotas
<notasas@gmail.com>
Sat, 10 Dec 2016 19:10:46 +0000
(21:10 +0200)
committer
Eduardo Lima Mitev
<elima@igalia.com>
Sun, 11 Dec 2016 19:04:15 +0000
(20:04 +0100)
Doesn't look like this can work on 32bit, just rids of annoying
warning.
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Reviewed-by: Eduardo Lima Mitev <elima@igalia.com>
src/intel/tools/aubinator.c
patch
|
blob
|
history
diff --git
a/src/intel/tools/aubinator.c
b/src/intel/tools/aubinator.c
index
5e3a684
..
e2bec8f
100644
(file)
--- a/
src/intel/tools/aubinator.c
+++ b/
src/intel/tools/aubinator.c
@@
-1297,7
+1297,7
@@
int main(int argc, char *argv[])
file = aub_file_open(input_file);
/* mmap a terabyte for our gtt space. */
- gtt_size = 1ul << 40;
+ gtt_size = 1ul
l
<< 40;
gtt = mmap(NULL, gtt_size, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0);
if (gtt == MAP_FAILED) {