summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-09-21 14:59:42 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-09-21 14:59:42 +0000
commit46aa524f0d34c21ccd64d674ae3628c69fb9883e (patch)
tree62a3dae95328988fee6065eca1b456ba4a2be856 /include
parent6d31c0b79a06483d7a80209bba34226ccf9088bb (diff)
downloadllvm-46aa524f0d34c21ccd64d674ae3628c69fb9883e.tar.gz
llvm-46aa524f0d34c21ccd64d674ae3628c69fb9883e.tar.bz2
llvm-46aa524f0d34c21ccd64d674ae3628c69fb9883e.tar.xz
llvmc: Allow multiple output languages.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CompilerDriver/Tool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CompilerDriver/Tool.h b/include/llvm/CompilerDriver/Tool.h
index 45ef50d0b5..7316dfdcab 100644
--- a/include/llvm/CompilerDriver/Tool.h
+++ b/include/llvm/CompilerDriver/Tool.h
@@ -58,7 +58,7 @@ namespace llvmc {
virtual const char* Name() const = 0;
virtual const char** InputLanguages() const = 0;
- virtual const char* OutputLanguage() const = 0;
+ virtual const char** OutputLanguages() const = 0;
virtual bool IsJoin() const = 0;
virtual bool WorksOnEmpty() const = 0;