Re: [Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-25 Thread Alejandro Piñeiro
On 25/02/16 11:54, Timothy Arceri wrote: > On Thu, 2016-02-25 at 11:08 +0100, Alejandro Piñeiro wrote: >> On 25/02/16 10:41, Timothy Arceri wrote: >>> On Thu, 2016-02-25 at 09:09 +0100, Alejandro Piñeiro wrote: On 25/02/16 00:27, Timothy Arceri wrote: > On Wed, 2016-02-24 at 20:04 +0100, A

Re: [Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-25 Thread Timothy Arceri
On Thu, 2016-02-25 at 11:08 +0100, Alejandro Piñeiro wrote: > On 25/02/16 10:41, Timothy Arceri wrote: > > On Thu, 2016-02-25 at 09:09 +0100, Alejandro Piñeiro wrote: > > > On 25/02/16 00:27, Timothy Arceri wrote: > > > > On Wed, 2016-02-24 at 20:04 +0100, Alejandro Piñeiro wrote: > > > > > Bugzill

Re: [Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-25 Thread Alejandro Piñeiro
On 25/02/16 10:41, Timothy Arceri wrote: > On Thu, 2016-02-25 at 09:09 +0100, Alejandro Piñeiro wrote: >> On 25/02/16 00:27, Timothy Arceri wrote: >>> On Wed, 2016-02-24 at 20:04 +0100, Alejandro Piñeiro wrote: Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94129 --- src/com

Re: [Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-25 Thread Timothy Arceri
On Thu, 2016-02-25 at 09:09 +0100, Alejandro Piñeiro wrote: > On 25/02/16 00:27, Timothy Arceri wrote: > > On Wed, 2016-02-24 at 20:04 +0100, Alejandro Piñeiro wrote: > > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94129 > > > --- > > >  src/compiler/glsl/ast_to_hir.cpp | 7 +++ > >

Re: [Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-25 Thread Alejandro Piñeiro
On 25/02/16 00:27, Timothy Arceri wrote: > On Wed, 2016-02-24 at 20:04 +0100, Alejandro Piñeiro wrote: >> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94129 >> --- >> src/compiler/glsl/ast_to_hir.cpp | 7 +++ >> 1 file changed, 7 insertions(+) >> >> diff --git a/src/compiler/glsl/ast

Re: [Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-24 Thread Timothy Arceri
On Wed, 2016-02-24 at 20:04 +0100, Alejandro Piñeiro wrote: > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94129 > --- >  src/compiler/glsl/ast_to_hir.cpp | 7 +++ >  1 file changed, 7 insertions(+) > > diff --git a/src/compiler/glsl/ast_to_hir.cpp > b/src/compiler/glsl/ast_to_hir.cpp

[Mesa-dev] [RFC 3/3] glsl: raise warning when using uninitialized variables

2016-02-24 Thread Alejandro Piñeiro
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94129 --- src/compiler/glsl/ast_to_hir.cpp | 7 +++ 1 file changed, 7 insertions(+) diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/compiler/glsl/ast_to_hir.cpp index ee5485c..296c845 100644 --- a/src/compiler/glsl/ast_to_hir.cpp +++