[llvm-commits] CVS: llvm/lib/Target/X86/X86.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Dec 16 09:57:01 PST 2002
Changes in directory llvm/lib/Target/X86:
X86.h updated: 1.8 -> 1.9
---
Log message:
Add info about register aliases, add prototype for createLocalRegisterAllocator
---
Diffs of the changes:
Index: llvm/lib/Target/X86/X86.h
diff -u llvm/lib/Target/X86/X86.h:1.8 llvm/lib/Target/X86/X86.h:1.9
--- llvm/lib/Target/X86/X86.h:1.8 Mon Dec 16 08:38:13 2002
+++ llvm/lib/Target/X86/X86.h Mon Dec 16 09:55:51 2002
@@ -25,6 +25,7 @@
/// every register. Wow, great policy huh?
///
Pass *createSimpleRegisterAllocator(TargetMachine &TM);
+Pass *createLocalRegisterAllocator(TargetMachine &TM);
/// createX86CodePrinterPass - Print out the specified machine code function to
/// the specified stream. This function should work regardless of whether or
@@ -46,7 +47,7 @@
// mapping from register name to register number.
//
enum Register {
-#define R(ENUM, NAME, FLAGS, TSFLAGS) ENUM,
+#define R(ENUM, NAME, FLAGS, TSFLAGS, A1, A2, A3) ENUM,
#include "X86RegisterInfo.def"
};
More information about the llvm-commits
mailing list