[llvm-branch-commits] [llvm-branch] r103580 - in /llvm/branches/Apple/Morbo/test: FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp FrontendC/2007-04-11-InlineStorageClassC89.c FrontendC/2007-04-11-InlineStorageClassC99.c

Dale Johannesen dalej at apple.com
Tue May 11 22:35:30 PDT 2010


Author: johannes
Date: Wed May 12 00:35:30 2010
New Revision: 103580

URL: http://llvm.org/viewvc/llvm-project?rev=103580&view=rev
Log:
Tests for 6599374 + 7898991
$ svn merge -c 103230 https://dalej@llvm.org/svn/llvm-project/llvm/trunk
--- Merging r103230 into '.':
U    test/FrontendC/2007-04-11-InlineStorageClassC99.c
U    test/FrontendC/2007-04-11-InlineStorageClassC89.c
$ svn merge -c 103574 https://dalej@llvm.org/svn/llvm-project/llvm/trunk
--- Merging r103574 into '.':
A    test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp


Added:
    llvm/branches/Apple/Morbo/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp
      - copied unchanged from r103574, llvm/trunk/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp
Modified:
    llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC89.c
    llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC99.c

Modified: llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC89.c
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC89.c?rev=103580&r1=103579&r2=103580&view=diff
==============================================================================
--- llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC89.c (original)
+++ llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC89.c Wed May 12 00:35:30 2010
@@ -11,8 +11,8 @@
 // RUN:   grep -v linkonce | count 1
 // RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep define | \
 // RUN:   grep xstatnoWeak | grep internal | count 1
-// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep declare | \
-// RUN:   grep xextnoWeak | grep -v internal | grep -v weak | \
+// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep define | \
+// RUN:   grep xextnoWeak | grep available_externally | grep -v weak | \
 // RUN:   grep -v linkonce | count 1
 inline int xglobWeak(int) __attribute__((weak));
 inline int xglobWeak (int i) {

Modified: llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC99.c
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC99.c?rev=103580&r1=103579&r2=103580&view=diff
==============================================================================
--- llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC99.c (original)
+++ llvm/branches/Apple/Morbo/test/FrontendC/2007-04-11-InlineStorageClassC99.c Wed May 12 00:35:30 2010
@@ -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) {





More information about the llvm-branch-commits mailing list