[llvm-commits] [llvm] r103230 - in /llvm/trunk/test/FrontendC: 2007-04-11-InlineStorageClassC89.c 2007-04-11-InlineStorageClassC99.c
Dale Johannesen
dalej at apple.com
Thu May 6 18:11:31 PDT 2010
Author: johannes
Date: Thu May 6 20:11:31 2010
New Revision: 103230
URL: http://llvm.org/viewvc/llvm-project?rev=103230&view=rev
Log:
Adjust tests affected by llvm-gcc 103229.
All results here match gcc-4.2.
Modified:
llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC89.c
llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC99.c
Modified: llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC89.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC89.c?rev=103230&r1=103229&r2=103230&view=diff
==============================================================================
--- llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC89.c (original)
+++ llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC89.c Thu May 6 20:11:31 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/trunk/test/FrontendC/2007-04-11-InlineStorageClassC99.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC99.c?rev=103230&r1=103229&r2=103230&view=diff
==============================================================================
--- llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC99.c (original)
+++ llvm/trunk/test/FrontendC/2007-04-11-InlineStorageClassC99.c Thu May 6 20:11:31 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-commits
mailing list