diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-21 21:45:51 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-21 21:45:51 +0000 |
commit | 12d81f3ff45c749eebd8e80642870e5e1bad1167 (patch) | |
tree | 70a948e5e7c1319f034ea84b73b68a8db93e02a9 /test/FrontendAda | |
parent | 51162baae15ab57f70fc699e1382328f3b96e91b (diff) |
Replace llvm_gcc_supports_ada and llvm_gcc_supports_objc with just a single
llvm_gcc_supports function that takes the language as an argument. Base that
function on the new LLVMGCC_LANGS configured variable so that we don't have
to execute feature checks during the test run.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendAda')
-rw-r--r-- | test/FrontendAda/dg.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendAda/dg.exp b/test/FrontendAda/dg.exp index 8d2f1b0c40..2307c3fdbe 100644 --- a/test/FrontendAda/dg.exp +++ b/test/FrontendAda/dg.exp @@ -1,6 +1,6 @@ load_lib llvm.exp -if [ llvm_gcc_supports_ada ] then { +if [ llvm_gcc_supports ada ] then { RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{adb,ads}]] } |