diff --git a/Install/Windows/glslangValidator.exe b/Install/Windows/glslangValidator.exe
index f3ee9f39f31d3b28e10142c4410cf07cbad61042..60c4ad9a2ea783b9b6c43a6a5791d413e252d6f6 100644
Binary files a/Install/Windows/glslangValidator.exe and b/Install/Windows/glslangValidator.exe differ
diff --git a/Test/300.vert b/Test/300.vert
index 05a5932a8369525bd609ed7095fce2b8d99e4be6..11a0078565e2a54728e97125fe3330770579d16e 100644
--- a/Test/300.vert
+++ b/Test/300.vert
@@ -159,3 +159,12 @@ int agggf(float f) { return 2; }
 int agggf(float f);
 
 out struct Ssss { float f; } ssss;
+
+uniform Bblock {
+   int a;
+} Binst;
+int Bfoo;
+
+layout(std140) Binst;    // ERROR
+layout(std140) Bblock;   // ERROR
+layout(std140) Bfoo;     // ERROR
diff --git a/Test/baseResults/120.vert.out b/Test/baseResults/120.vert.out
index 4b99b0dc19871fa2782a9e4e3e09f84e57f9921f..a2063a0e27907d700d0be6b110f129fae77ea048 100644
--- a/Test/baseResults/120.vert.out
+++ b/Test/baseResults/120.vert.out
@@ -1,7 +1,7 @@
 120.vert
 ERROR: 0:3: 'in for stage inputs' : not supported for this version or the enabled extensions 
 ERROR: 0:4: 'out for stage outputs' : not supported for this version or the enabled extensions 
-ERROR: 0:11: 'gl_Position' : cannot add storage, auxiliary, memory, interpolation, or precision qualifier to an existing variable 
+ERROR: 0:11: 'gl_Position' : cannot add storage, auxiliary, memory, interpolation, layout, or precision qualifier to an existing variable 
 ERROR: 0:12: '' : can only have one auxiliary qualifier (centroid, patch, and sample) 
 ERROR: 0:12: '' : replicated qualifiers 
 ERROR: 0:12: 'foo' : identifier not previously declared 
diff --git a/Test/baseResults/300.vert.out b/Test/baseResults/300.vert.out
index 2e9dfae5c0d629052ccff7868b251b6c0001ef5d..3b2deac9ee92248a4efb89f5f5361186d86e75b7 100644
--- a/Test/baseResults/300.vert.out
+++ b/Test/baseResults/300.vert.out
@@ -35,7 +35,10 @@ ERROR: 0:146: '' : array size required
 ERROR: 0:147: '' : array size required 
 ERROR: 0:148: '' : array size required 
 ERROR: 0:149: 'float' : cannot apply precision statement to this type; use 'float', 'int' or a sampler type 
-ERROR: 36 compilation errors.  No code generated.
+ERROR: 0:168: 'Binst' : cannot add storage, auxiliary, memory, interpolation, layout, or precision qualifier to an existing variable 
+ERROR: 0:169: 'Bblock' : cannot add storage, auxiliary, memory, interpolation, layout, or precision qualifier to an existing variable 
+ERROR: 0:170: 'Bfoo' : cannot add storage, auxiliary, memory, interpolation, layout, or precision qualifier to an existing variable 
+ERROR: 39 compilation errors.  No code generated.
 
 
 ERROR: node is still EOpNull!
@@ -286,6 +289,8 @@ ERROR: node is still EOpNull!
 0:?     's2DAS' (uniform lowp sampler2DArrayShadow)
 0:?     'c2D' (in highp 2-component vector of float)
 0:?     'ssss' (smooth out structure{highp float f})
+0:?     'Binst' (layout(column_major shared ) uniform block{layout(column_major shared ) uniform highp int a})
+0:?     'Bfoo' (highp int)
 0:?     'gl_VertexID' (gl_VertexId highp int)
 0:?     'gl_InstanceID' (gl_InstanceId highp int)
 
diff --git a/Test/baseResults/specExamples.vert.out b/Test/baseResults/specExamples.vert.out
index 0a7c408d95438b17b933cb5c0e3801b6ce666d62..dded395c68e45ba9ffa2afbab778f8b9083e411e 100644
--- a/Test/baseResults/specExamples.vert.out
+++ b/Test/baseResults/specExamples.vert.out
@@ -34,6 +34,7 @@ ERROR: 0:97: 'binding' : requires block, or sampler/image, or atomic-counter typ
 ERROR: 0:106: '' : vertex input cannot be further qualified 
 ERROR: 0:106: 'redeclaration' : cannot change storage, memory, or auxiliary qualification of gl_FrontColor
 ERROR: 0:112: 'ColorIvn' : identifier not previously declared 
+WARNING: 0:118: '' : unknown requalification 
 ERROR: 0:132: 'shared' : not supported in this stage: vertex
 ERROR: 0:134: '' : function does not return a value: funcA
 ERROR: 0:136: '' : function does not return a value: funcB
diff --git a/glslang/Include/revision.h b/glslang/Include/revision.h
index 8e56eb8e4f392ba6421c6ab36da834c62e324b30..c18f60d0b9b81404e670d31ecfb86ab4ef4fb0c3 100644
--- a/glslang/Include/revision.h
+++ b/glslang/Include/revision.h
@@ -9,5 +9,5 @@
 // source have to figure out how to create revision.h just to get a build
 // going.  However, if it is not updated, it can be a version behind.
 
-#define GLSLANG_REVISION "25220"
-#define GLSLANG_DATE     "2014/02/03 09:28:23"
+#define GLSLANG_REVISION "25314"
+#define GLSLANG_DATE     "2014/02/11 22:15:49"
diff --git a/glslang/MachineIndependent/ParseHelper.cpp b/glslang/MachineIndependent/ParseHelper.cpp
index bb4560ea9245518efc88ea22ae7ac36e31b7fdfd..d2b63dee166bd65012c70dabc2043c43cbcef37f 100644
--- a/glslang/MachineIndependent/ParseHelper.cpp
+++ b/glslang/MachineIndependent/ParseHelper.cpp
@@ -4187,10 +4187,10 @@ void TParseContext::addQualifierToExisting(TSourceLoc loc, TQualifier qualifier,
     if (qualifier.isAuxiliary() ||
         qualifier.isMemory() ||
         qualifier.isInterpolation() ||
+        qualifier.hasLayout() ||
         qualifier.storage != EvqTemporary ||
         qualifier.precision != EpqNone) {
-        error(loc, "cannot add storage, auxiliary, memory, interpolation, or precision qualifier to an existing variable", identifier.c_str(), "");
-
+        error(loc, "cannot add storage, auxiliary, memory, interpolation, layout, or precision qualifier to an existing variable", identifier.c_str(), "");
         return;
     }
 
@@ -4204,7 +4204,8 @@ void TParseContext::addQualifierToExisting(TSourceLoc loc, TQualifier qualifier,
             error(loc, "cannot change qualification after use", "invariant", "");
         symbol->getWritableType().getQualifier().invariant = true;
         invariantCheck(loc, symbol->getType(), identifier);
-    }
+    } else
+        warn(loc, "unknown requalification", "", "");
 }
 
 void TParseContext::addQualifierToExisting(TSourceLoc loc, TQualifier qualifier, TIdentifierList& identifiers)