[llvm-commits] CVS: llvm/lib/Transforms/Utils/Local.cpp
Nate Begeman
natebegeman at mac.com
Fri Jan 13 17:25:39 PST 2006
Changes in directory llvm/lib/Transforms/Utils:
Local.cpp updated: 1.48 -> 1.49
---
Log message:
Add bswap intrinsics as documented in the Language Reference
---
Diffs of the changes: (+3 -0)
Local.cpp | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/lib/Transforms/Utils/Local.cpp
diff -u llvm/lib/Transforms/Utils/Local.cpp:1.48 llvm/lib/Transforms/Utils/Local.cpp:1.49
--- llvm/lib/Transforms/Utils/Local.cpp:1.48 Fri Jan 13 15:31:54 2006
+++ llvm/lib/Transforms/Utils/Local.cpp Fri Jan 13 19:25:24 2006
@@ -298,6 +298,9 @@
case Intrinsic::frameaddress:
case Intrinsic::stacksave:
case Intrinsic::isunordered:
+ case Intrinsic::bswap_i16:
+ case Intrinsic::bswap_i32:
+ case Intrinsic::bswap_i64:
case Intrinsic::ctpop:
case Intrinsic::ctlz:
case Intrinsic::cttz:
More information about the llvm-commits
mailing list