diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-09-21 14:59:42 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-09-21 14:59:42 +0000 |
commit | 46aa524f0d34c21ccd64d674ae3628c69fb9883e (patch) | |
tree | 62a3dae95328988fee6065eca1b456ba4a2be856 /include/llvm/CompilerDriver/Tool.h | |
parent | 6d31c0b79a06483d7a80209bba34226ccf9088bb (diff) |
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/llvm/CompilerDriver/Tool.h')
-rw-r--r-- | include/llvm/CompilerDriver/Tool.h | 2 |
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; |