diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-11 15:30:20 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-11 15:30:20 +0000 |
commit | 859e5cc1f707a562024e07a0a3c6ab41e972e89f (patch) | |
tree | c46dff1989ee2cde1deaec73b631d876a55f71ea | |
parent | 7c2af6e93a911009973e69adbdd1199804260393 (diff) | |
download | external_llvm-859e5cc1f707a562024e07a0a3c6ab41e972e89f.zip external_llvm-859e5cc1f707a562024e07a0a3c6ab41e972e89f.tar.gz external_llvm-859e5cc1f707a562024e07a0a3c6ab41e972e89f.tar.bz2 |
Removed `-debug' so that spurious printouts of patterns are not seen at
compilation time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7727 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/Makefile b/lib/Target/X86/Makefile index 25aa728..ee4cf8c 100644 --- a/lib/Target/X86/Makefile +++ b/lib/Target/X86/Makefile @@ -23,7 +23,7 @@ X86GenInstrInfo.inc: X86.td X86InstrInfo.td ../Target.td $(TBLGEN) $(TBLGEN) $< -gen-instr-desc -o $@ X86GenInstrSelector.inc: X86.td X86InstrInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -debug -gen-instr-selector -o $@ + $(TBLGEN) $< -gen-instr-selector -o $@ clean:: $(VERB) rm -f *.inc |