[llvm-commits] [poolalloc] r137266 - in /poolalloc/branches/release_27/test/type_checks: correct/basic.c correct/basic_repeat.c correct/libclamav_snprintf.c correct/vprintf.c correct/vprintf1.c error/IntUnion.c error/alloc.c error/indirect_simple.c error/libclamav_snprintf1.c error/misalign.c error/misalign1.c error/testEndian.c

Will Dietz wdietz2 at illinois.edu
Wed Aug 10 15:57:24 PDT 2011


Author: wdietz2
Date: Wed Aug 10 17:57:24 2011
New Revision: 137266

URL: http://llvm.org/viewvc/llvm-project?rev=137266&view=rev
Log:
Use llvm-g++ for linking type-checking tests, the runtime is in c++.

Modified:
    poolalloc/branches/release_27/test/type_checks/correct/basic.c
    poolalloc/branches/release_27/test/type_checks/correct/basic_repeat.c
    poolalloc/branches/release_27/test/type_checks/correct/libclamav_snprintf.c
    poolalloc/branches/release_27/test/type_checks/correct/vprintf.c
    poolalloc/branches/release_27/test/type_checks/correct/vprintf1.c
    poolalloc/branches/release_27/test/type_checks/error/IntUnion.c
    poolalloc/branches/release_27/test/type_checks/error/alloc.c
    poolalloc/branches/release_27/test/type_checks/error/indirect_simple.c
    poolalloc/branches/release_27/test/type_checks/error/libclamav_snprintf1.c
    poolalloc/branches/release_27/test/type_checks/error/misalign.c
    poolalloc/branches/release_27/test/type_checks/error/misalign1.c
    poolalloc/branches/release_27/test/type_checks/error/testEndian.c

Modified: poolalloc/branches/release_27/test/type_checks/correct/basic.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/correct/basic.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/correct/basic.c (original)
+++ poolalloc/branches/release_27/test/type_checks/correct/basic.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  */

Modified: poolalloc/branches/release_27/test/type_checks/correct/basic_repeat.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/correct/basic_repeat.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/correct/basic_repeat.c (original)
+++ poolalloc/branches/release_27/test/type_checks/correct/basic_repeat.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  */

Modified: poolalloc/branches/release_27/test/type_checks/correct/libclamav_snprintf.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/correct/libclamav_snprintf.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/correct/libclamav_snprintf.c (original)
+++ poolalloc/branches/release_27/test/type_checks/correct/libclamav_snprintf.c Wed Aug 10 17:57:24 2011
@@ -5,7 +5,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  */

Modified: poolalloc/branches/release_27/test/type_checks/correct/vprintf.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/correct/vprintf.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/correct/vprintf.c (original)
+++ poolalloc/branches/release_27/test/type_checks/correct/vprintf.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  */

Modified: poolalloc/branches/release_27/test/type_checks/correct/vprintf1.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/correct/vprintf1.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/correct/vprintf1.c (original)
+++ poolalloc/branches/release_27/test/type_checks/correct/vprintf1.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  */

Modified: poolalloc/branches/release_27/test/type_checks/error/IntUnion.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/IntUnion.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/IntUnion.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/IntUnion.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  * ;XFAIL:*

Modified: poolalloc/branches/release_27/test/type_checks/error/alloc.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/alloc.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/alloc.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/alloc.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  * ;XFAIL:*

Modified: poolalloc/branches/release_27/test/type_checks/error/indirect_simple.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/indirect_simple.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/indirect_simple.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/indirect_simple.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  */

Modified: poolalloc/branches/release_27/test/type_checks/error/libclamav_snprintf1.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/libclamav_snprintf1.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/libclamav_snprintf1.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/libclamav_snprintf1.c Wed Aug 10 17:57:24 2011
@@ -5,7 +5,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  * ;XFAIL:*

Modified: poolalloc/branches/release_27/test/type_checks/error/misalign.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/misalign.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/misalign.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/misalign.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  * ;XFAIL:*

Modified: poolalloc/branches/release_27/test/type_checks/error/misalign1.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/misalign1.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/misalign1.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/misalign1.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  * ;XFAIL:*

Modified: poolalloc/branches/release_27/test/type_checks/error/testEndian.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_27/test/type_checks/error/testEndian.c?rev=137266&r1=137265&r2=137266&view=diff
==============================================================================
--- poolalloc/branches/release_27/test/type_checks/error/testEndian.c (original)
+++ poolalloc/branches/release_27/test/type_checks/error/testEndian.c Wed Aug 10 17:57:24 2011
@@ -4,7 +4,7 @@
  * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc
  * RUN: tc-link %t.tc.bc -o %t.tc1.bc
  * RUN: llc %t.tc1.bc -o %t.tc1.s
- * RUN: llvm-gcc %t.tc1.s -o %t.tc2
+ * RUN: llvm-g++ %t.tc1.s -o %t.tc2
  * Execute
  * RUN: %t.tc2 >& %t.tc.out
  * ;XFAIL:*





More information about the llvm-commits mailing list