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
This commit is contained in:
Duncan Sands 2008-08-07 17:59:54 +00:00
parent dbfccf64d9
commit c93346af8e

View File

@ -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 }
}