aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/string-init.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-16 05:03:48 +0000
committerChris Lattner <sabre@nondot.org>2009-07-16 05:03:48 +0000
commit95b851e55c328af4b69da7bfc1124bf258c0ffe5 (patch)
treeb3e529fc1130dc719c1c655abd0a3632850ddb05 /test/CodeGen/string-init.c
parent9797a8760ba3d43c686aa9e09978e0ca172172a4 (diff)
codegen string literals using private linkage now like llvm-gcc, eliminating
some target hooks. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75895 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/string-init.c')
-rw-r--r--test/CodeGen/string-init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/string-init.c b/test/CodeGen/string-init.c
index 38c7ec0575..4a80851260 100644
--- a/test/CodeGen/string-init.c
+++ b/test/CodeGen/string-init.c
@@ -1,5 +1,5 @@
// RUN: clang-cc -emit-llvm %s -o %t &&
-// RUN: grep 'internal constant \[10 x i8\]' %t &&
+// RUN: grep 'private constant \[10 x i8\]' %t &&
// RUN: not grep -F "[5 x i8]" %t &&
// RUN: not grep "store " %t