aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGenObjC/encode-test-5.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGenObjC/encode-test-5.m b/test/CodeGenObjC/encode-test-5.m
index a76b071e7f..9820b4183f 100644
--- a/test/CodeGenObjC/encode-test-5.m
+++ b/test/CodeGenObjC/encode-test-5.m
@@ -1,12 +1,12 @@
// RUN: clang-cc -triple=x86_64-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
-// RUN: grep ji %t | count 1 &&
+// RUN: grep ji.00 %t | count 1 &&
char *a = @encode(_Complex int);
-// RUN: grep jf %t | count 1 &&
+// RUN: grep jf.00 %t | count 1 &&
char *b = @encode(_Complex float);
-// RUN: grep jd %t | count 1 &&
+// RUN: grep jd.00 %t | count 1 &&
char *c = @encode(_Complex double);
// RUN: grep "t.00" %t | count 1 &&