aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-08-07 17:59:54 +0000
committerDuncan Sands <baldrick@free.fr>2008-08-07 17:59:54 +0000
commitc93346af8e754149af5e2838ef3cb286eef094df (patch)
treef848d79ca857d892e16b7c53854c14eda540ef89
parentdbfccf64d93e2ea30d9194e754e53ea7b2ea9aba (diff)
Use correct compiler component names for objc
and objc++. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54474 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/lib/llvm.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp
index 4ee300b2b3..8c7cbfd214 100644
--- a/test/lib/llvm.exp
+++ b/test/lib/llvm.exp
@@ -236,8 +236,8 @@ proc llvm_gcc_supports { lang } {
ada { set file gnat1 }
c { set file cc1 }
c++ { set file cc1plus }
- objc { set file cc1 }
- objc++ { set file cc1 }
+ objc { set file cc1obj }
+ objc++ { set file cc1objplus }
fortran { set file f951 }
default { return 0 }
}