[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed May 24 10:04:34 PDT 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
LegalizeDAG.cpp updated: 1.377 -> 1.378
---
Log message:
Patches to make the LLVM sources more -pedantic clean. Patch provided
by Anton Korobeynikov! This is a step towards closing PR786: http://llvm.cs.uiuc.edu/PR786 .
---
Diffs of the changes: (+1 -1)
LegalizeDAG.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.377 llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.378
--- llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.377 Wed May 17 13:00:08 2006
+++ llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp Wed May 24 12:04:04 2006
@@ -65,7 +65,7 @@
enum LegalizeAction {
Legal, // The target natively supports this operation.
Promote, // This operation should be executed in a larger type.
- Expand, // Try to expand this to other ops, otherwise use a libcall.
+ Expand // Try to expand this to other ops, otherwise use a libcall.
};
/// ValueTypeActions - This is a bitvector that contains two bits for each
More information about the llvm-commits
mailing list