[llvm-commits] CVS: llvm/test/C++Frontend/2007-04-11-InlineStorageClassC++.cpp

Chris Lattner sabre at nondot.org
Sun Apr 15 23:11:08 PDT 2007



Changes in directory llvm/test/C++Frontend:

2007-04-11-InlineStorageClassC++.cpp updated: 1.3 -> 1.4
---
Log message:

fix incorrectly upgraded test


---
Diffs of the changes:  (+1 -2)

 2007-04-11-InlineStorageClassC++.cpp |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)


Index: llvm/test/C++Frontend/2007-04-11-InlineStorageClassC++.cpp
diff -u llvm/test/C++Frontend/2007-04-11-InlineStorageClassC++.cpp:1.3 llvm/test/C++Frontend/2007-04-11-InlineStorageClassC++.cpp:1.4
--- llvm/test/C++Frontend/2007-04-11-InlineStorageClassC++.cpp:1.3	Sun Apr 15 18:00:46 2007
+++ llvm/test/C++Frontend/2007-04-11-InlineStorageClassC++.cpp	Mon Apr 16 01:10:47 2007
@@ -6,13 +6,12 @@
 // RUN:   grep xWeaknoinline | grep weak | wc -l | grep 1
 // RUN: %llvmgxx %s -S -emit-llvm -O0 -o - | grep define | \
 // RUN:   grep xWeakextnoinline | grep weak | wc -l | grep 1
-// RUN: %llvmgxx %s -S -emit-llvm -O0 -o - | grep declare | \
+// RUN: %llvmgxx %s -S -emit-llvm -O0 -o - | grep define | \
 // RUN:   grep xglobnoWeak | grep linkonce | wc -l | grep 1
 // RUN: %llvmgxx %s -S -emit-llvm -O0 -o - | grep define | \
 // RUN:   grep xstatnoWeak | grep internal | wc -l | grep 1
 // RUN: %llvmgxx %s -S -emit-llvm -O0 -o - | grep define | \
 // RUN:   grep xextnoWeak | grep linkonce | wc -l | grep 1
-// XFAIL: *
 inline int xglobWeak(int) __attribute__((weak));
 inline int xglobWeak (int i) {
   return i*2;






More information about the llvm-commits mailing list