diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-12-10 04:33:07 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-12-10 04:33:07 +0000 |
commit | 09db53be574d29281165c080914f519b31cdcdcc (patch) | |
tree | aaa79678813adbc0899ca465a625f7d9347ab21b /llvm/projects/Stacker/lib/compiler/StackerParser.y | |
parent | 0f148bcbc0af61a261de78b17f4e13823af5d17c (diff) | |
download | bcm5719-llvm-09db53be574d29281165c080914f519b31cdcdcc.tar.gz bcm5719-llvm-09db53be574d29281165c080914f519b31cdcdcc.zip |
Fix apparent copy-and-paste-o.
Get rid of %debug - Mac OS X bison doesn't have it. sigh.
llvm-svn: 10352
Diffstat (limited to 'llvm/projects/Stacker/lib/compiler/StackerParser.y')
-rw-r--r-- | llvm/projects/Stacker/lib/compiler/StackerParser.y | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/projects/Stacker/lib/compiler/StackerParser.y b/llvm/projects/Stacker/lib/compiler/StackerParser.y index cded9645b69..59139122a28 100644 --- a/llvm/projects/Stacker/lib/compiler/StackerParser.y +++ b/llvm/projects/Stacker/lib/compiler/StackerParser.y @@ -1,4 +1,4 @@ -//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===// +//===-- StackerParser.y - Parser for Stacker programs -----------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,12 +7,10 @@ // //===----------------------------------------------------------------------===// // -// This file implements the bison parser for LLVM assembly languages files. +// This file implements the bison parser for Stacker programs. // //===----------------------------------------------------------------------===// -%debug - %{ #include "StackerCompiler.h" #include "llvm/SymbolTable.h" |