[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/2003-05-31-LongShifts.c

Reid Spencer reid at x10sys.com
Thu Dec 21 14:20:42 PST 2006



Changes in directory llvm-test/SingleSource/UnitTests:

2003-05-31-LongShifts.c updated: 1.2 -> 1.3
---
Log message:

Update to new mnemonics for shift operators.


---
Diffs of the changes:  (+1 -1)

 2003-05-31-LongShifts.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm-test/SingleSource/UnitTests/2003-05-31-LongShifts.c
diff -u llvm-test/SingleSource/UnitTests/2003-05-31-LongShifts.c:1.2 llvm-test/SingleSource/UnitTests/2003-05-31-LongShifts.c:1.3
--- llvm-test/SingleSource/UnitTests/2003-05-31-LongShifts.c:1.2	Wed Aug 31 14:07:59 2005
+++ llvm-test/SingleSource/UnitTests/2003-05-31-LongShifts.c	Thu Dec 21 16:20:26 2006
@@ -1,7 +1,7 @@
 
 void Test(long long Val, int Amt) {
   printf("0x%llx op %d:\n", Val, Amt);
-  printf("  sar: 0x%llx\n  shr: 0x%llx\n  shl: 0x%llx\n", Val >> Amt, 
+  printf("  ashr: 0x%llx\n  lshr: 0x%llx\n  shl: 0x%llx\n", Val >> Amt, 
          (unsigned long long)Val >> Amt, Val << Amt);
 }
 






More information about the llvm-commits mailing list