Removed extraneous semi-colon; this was prevening the grammar file from
authorJohn Criswell <criswell@uiuc.edu>
Tue, 24 Oct 2006 19:09:48 +0000 (19:09 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Tue, 24 Oct 2006 19:09:48 +0000 (19:09 +0000)
bison'ing correctly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31169 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/llvmAsmParser.y
lib/AsmParser/llvmAsmParser.y.cvs

index 4dff742101c494272409fb5fe68a361f61ce5f6e..425d2abb8913604ebf9f6323885a6c39f34bb647 100644 (file)
@@ -1872,7 +1872,7 @@ TargetDefinition : ENDIAN '=' BigOrLittle {
   | TRIPLE '=' STRINGCONSTANT {
     CurModule.CurrentModule->setTargetTriple($3);
     free($3);
-  };
+  }
   | DATALAYOUT '=' STRINGCONSTANT {
     CurModule.CurrentModule->setDataLayout($3);
     free($3);
index 4dff742101c494272409fb5fe68a361f61ce5f6e..425d2abb8913604ebf9f6323885a6c39f34bb647 100644 (file)
@@ -1872,7 +1872,7 @@ TargetDefinition : ENDIAN '=' BigOrLittle {
   | TRIPLE '=' STRINGCONSTANT {
     CurModule.CurrentModule->setTargetTriple($3);
     free($3);
-  };
+  }
   | DATALAYOUT '=' STRINGCONSTANT {
     CurModule.CurrentModule->setDataLayout($3);
     free($3);