[llvm-commits] [llvm] r46346 - /llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
Chris Lattner
sabre at nondot.org
Thu Jan 24 22:20:20 PST 2008
Author: lattner
Date: Fri Jan 25 00:20:20 2008
New Revision: 46346
URL: http://llvm.org/viewvc/llvm-project?rev=46346&view=rev
Log:
add a fixme.
Modified:
llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAG.h?rev=46346&r1=46345&r2=46346&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAG.h Fri Jan 25 00:20:20 2008
@@ -499,6 +499,8 @@
/// isCommutativeBinOp - Returns true if the opcode is a commutative binary
/// operation.
static bool isCommutativeBinOp(unsigned Opcode) {
+ // FIXME: This should get its info from the td file, so that we can include
+ // target info.
switch (Opcode) {
case ISD::ADD:
case ISD::MUL:
More information about the llvm-commits
mailing list