aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-24 08:18:44 +0000
committerChris Lattner <sabre@nondot.org>2004-08-24 08:18:44 +0000
commit6f0161aac396de29d5a296f8b0ee81827b7e0a9c (patch)
tree083a859e84bd3d418f991cba02727c0557609cd9 /lib/Target/X86/X86.h
parent47d2f2bb50414eb1b2fc26592ebad6b00272e0e5 (diff)
downloadexternal_llvm-6f0161aac396de29d5a296f8b0ee81827b7e0a9c.zip
external_llvm-6f0161aac396de29d5a296f8b0ee81827b7e0a9c.tar.gz
external_llvm-6f0161aac396de29d5a296f8b0ee81827b7e0a9c.tar.bz2
Add -sse[,2,3] arguments to LLC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16018 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index 3b5360e..c6d6a55 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -23,6 +23,12 @@ class TargetMachine;
class FunctionPass;
class IntrinsicLowering;
+enum X86VectorEnum {
+ NoSSE, SSE, SSE2, SSE3
+};
+
+extern X86VectorEnum X86Vector;
+
/// createX86SimpleInstructionSelector - This pass converts an LLVM function
/// into a machine code representation in a very simple peep-hole fashion. The
/// generated code sucks but the implementation is nice and simple.