Fix misspelled EOpFrexp and EOpLdexp.

This commit is contained in:
John Kessenich 2015-08-19 17:30:12 -06:00
parent fc51d284aa
commit 78258d3d40
4 changed files with 8 additions and 8 deletions

View file

@ -3219,8 +3219,8 @@ void IdentifyBuiltIns(int version, EProfile profile, EShLanguage language, TSymb
symbolTable.relateToOperator("atomicCounter", EOpAtomicCounter);
symbolTable.relateToOperator("fma", EOpFma);
symbolTable.relateToOperator("frexp", EFrexp);
symbolTable.relateToOperator("ldexp", ELdexp);
symbolTable.relateToOperator("frexp", EOpFrexp);
symbolTable.relateToOperator("ldexp", EOpLdexp);
symbolTable.relateToOperator("uaddCarry", EOpAddCarry);
symbolTable.relateToOperator("usubBorrow", EOpSubBorrow);
symbolTable.relateToOperator("umulExtended", EOpUMulExtended);