From 7330d9706984ea66ea71426c6943e5344ce59285 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 2 Oct 2010 23:06:23 +0000 Subject: [PATCH] stub out a header to put 3dNow! instructions into. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115429 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86Instr3DNow.td | 13 +++++++++++++ lib/Target/X86/X86InstrInfo.td | 2 ++ lib/Target/X86/X86InstrMMX.td | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 lib/Target/X86/X86Instr3DNow.td diff --git a/lib/Target/X86/X86Instr3DNow.td b/lib/Target/X86/X86Instr3DNow.td new file mode 100644 index 00000000000..7615f845a46 --- /dev/null +++ b/lib/Target/X86/X86Instr3DNow.td @@ -0,0 +1,13 @@ +//====- X86Instr3DNow.td - The 3DNow! Instruction Set ------*- tablegen -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file describes the 3DNow! instruction set, which extends MMX to support +// floating point and also adds a few more random instructions for good measure. +// +//===----------------------------------------------------------------------===// diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index e8669070b83..cfe7fed0669 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -4994,3 +4994,5 @@ include "X86InstrSSE.td" //===----------------------------------------------------------------------===// include "X86InstrMMX.td" +include "X86Instr3DNow.td" + diff --git a/lib/Target/X86/X86InstrMMX.td b/lib/Target/X86/X86InstrMMX.td index 7268af834d8..8e4bafd6857 100644 --- a/lib/Target/X86/X86InstrMMX.td +++ b/lib/Target/X86/X86InstrMMX.td @@ -1,4 +1,4 @@ -//====- X86InstrMMX.td - Describe the X86 Instruction Set --*- tablegen -*-===// +//====- X86InstrMMX.td - Describe the MMX Instruction Set --*- tablegen -*-===// // // The LLVM Compiler Infrastructure // -- 2.34.1