[PowerPC] Enable printing instructions using aliases
[oota-llvm.git] / test / CodeGen / PowerPC / atomics-fences.ll
index 862bd173fdaf40dc838cc302d127fff6e64b18a9..09dd61f4ac5384c671cb60a824469057ccfe795f 100644 (file)
@@ -5,16 +5,16 @@
 ; Fences
 define void @fence_acquire() {
 ; CHECK-LABEL: fence_acquire
-; CHECK: sync 1
-; PPC440-NOT: sync 1
+; CHECK: lwsync
+; PPC440-NOT: lwsync
 ; PPC440: msync
   fence acquire
   ret void
 }
 define void @fence_release() {
 ; CHECK-LABEL: fence_release
-; CHECK: sync 1
-; PPC440-NOT: sync 1
+; CHECK: lwsync
+; PPC440-NOT: lwsync
 ; PPC440: msync
   fence release
   ret void