diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-04 23:16:56 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-04 23:16:56 +0000 |
commit | e98be31e7fd923a4f2385fd8a0ca54be9c6a4349 (patch) | |
tree | 199d9fa940103bb387e7f230da5d52f2c2902528 /test/FrontendC/2007-04-11-InlineStorageClassC99.c | |
parent | d55224c25e674c552df5b73958cfce3bc39e960f (diff) | |
download | external_llvm-e98be31e7fd923a4f2385fd8a0ca54be9c6a4349.zip external_llvm-e98be31e7fd923a4f2385fd8a0ca54be9c6a4349.tar.gz external_llvm-e98be31e7fd923a4f2385fd8a0ca54be9c6a4349.tar.bz2 |
Temporarily revert r72620 because r72619 was reverted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC/2007-04-11-InlineStorageClassC99.c')
-rw-r--r-- | test/FrontendC/2007-04-11-InlineStorageClassC99.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/FrontendC/2007-04-11-InlineStorageClassC99.c b/test/FrontendC/2007-04-11-InlineStorageClassC99.c index 3607999..f6193aa 100644 --- a/test/FrontendC/2007-04-11-InlineStorageClassC99.c +++ b/test/FrontendC/2007-04-11-InlineStorageClassC99.c @@ -1,13 +1,14 @@ -// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \ -// RUN: grep xglobWeak | grep weak | count 1 +// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep declare | \ +// RUN: grep xglobWeak | grep extern_weak | count 1 // RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \ // RUN: grep xextWeak | grep weak | count 1 // RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep define | \ // 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 define | \ -// RUN: grep xglobnoWeak | grep available_externally | count 1 +// RUN: %llvmgcc -std=c99 %s -S -emit-llvm -O0 -o - | grep declare | \ +// RUN: grep xglobnoWeak | grep -v internal | 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 | \ |