summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-04-11-InlineStorageClassC99.c
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-05-07 01:11:31 +0000
committerDale Johannesen <dalej@apple.com>2010-05-07 01:11:31 +0000
commitad9e61981359c70ef671b8c2e5f9bd6c5292ab7f (patch)
tree562773cd93daa4361159d0b2aa63b79fbff8c89e /test/FrontendC/2007-04-11-InlineStorageClassC99.c
parentfb95f89e8ebd0b71408472e2544e2b8d6d4738e5 (diff)
downloadllvm-ad9e61981359c70ef671b8c2e5f9bd6c5292ab7f.tar.gz
llvm-ad9e61981359c70ef671b8c2e5f9bd6c5292ab7f.tar.bz2
llvm-ad9e61981359c70ef671b8c2e5f9bd6c5292ab7f.tar.xz
Adjust tests affected by llvm-gcc 103229.
All results here match gcc-4.2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103230 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC/2007-04-11-InlineStorageClassC99.c')
-rw-r--r--test/FrontendC/2007-04-11-InlineStorageClassC99.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/FrontendC/2007-04-11-InlineStorageClassC99.c b/test/FrontendC/2007-04-11-InlineStorageClassC99.c
index f6193aa0ff..89af2789b3 100644
--- a/test/FrontendC/2007-04-11-InlineStorageClassC99.c
+++ b/test/FrontendC/2007-04-11-InlineStorageClassC99.c
@@ -6,13 +6,13 @@
// RUN: grep xWeaknoinline | grep weak | count 1
// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \
// RUN: grep xWeakextnoinline | grep weak | count 1
-// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep declare | \
-// RUN: grep xglobnoWeak | grep -v internal | grep -v weak | \
+// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \
+// RUN: grep xglobnoWeak | grep available_externally | grep -v weak | \
// RUN: grep -v linkonce | count 1
// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \
// RUN: grep xstatnoWeak | grep internal | count 1
// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \
-// RUN: grep xextnoWeak | grep -v internal | grep -v weak | \
+// RUN: grep xextnoWeak | grep -v available_externally | grep -v weak | \
// RUN: grep -v linkonce | count 1
inline int xglobWeak(int) __attribute__((weak));
inline int xglobWeak (int i) {