[cfe-commits] r52754 - /cfe/trunk/test/CodeGen/atomic.c

Chris Lattner sabre at nondot.org
Wed Jun 25 21:06:27 PDT 2008


Author: lattner
Date: Wed Jun 25 23:06:27 2008
New Revision: 52754

URL: http://llvm.org/viewvc/llvm-project?rev=52754&view=rev
Log:
fix this testcase after Mon Ping's intrinsic rename.

Modified:
    cfe/trunk/test/CodeGen/atomic.c

Modified: cfe/trunk/test/CodeGen/atomic.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/atomic.c?rev=52754&r1=52753&r2=52754&view=diff

==============================================================================
--- cfe/trunk/test/CodeGen/atomic.c (original)
+++ cfe/trunk/test/CodeGen/atomic.c Wed Jun 25 23:06:27 2008
@@ -1,12 +1,12 @@
 // RUN: clang %s -emit-llvm -o - > %t1 &&
-// RUN: grep @llvm.atomic.las.i32 %t1 &&
-// RUN: grep @llvm.atomic.lss.i32 %t1 &&
+// RUN: grep @llvm.atomic.load.add.i32 %t1 &&
+// RUN: grep @llvm.atomic.load.sub.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.min.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.max.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.umin.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.umax.i32 %t1 &&
 // RUN: grep @llvm.atomic.swap.i32 %t1 &&
-// RUN: grep @llvm.atomic.lcs.i32 %t1 &&
+// RUN: grep @llvm.atomic.cmp.swap.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.and.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.or.i32 %t1 &&
 // RUN: grep @llvm.atomic.load.xor.i32 %t1





More information about the cfe-commits mailing list