diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-11-26 22:16:19 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-11-26 22:16:19 +0000 |
commit | 7cf3104b7c1f12ac9298444a24d7e1742397bdbf (patch) | |
tree | 6326ae1981a6830a9b0ba5861f26ffeb9312fbef /polly/lib/RegisterPasses.cpp | |
parent | 98b35447057e783168a192366a4158bc7b722998 (diff) | |
download | bcm5719-llvm-7cf3104b7c1f12ac9298444a24d7e1742397bdbf.tar.gz bcm5719-llvm-7cf3104b7c1f12ac9298444a24d7e1742397bdbf.zip |
fix typo
Caught while compiling polly without cloog:
../tools/polly/lib/RegisterPasses.cpp:77: error: use of enum 'CodegenChoice' without previous declaration
llvm-svn: 168624
Diffstat (limited to 'polly/lib/RegisterPasses.cpp')
-rw-r--r-- | polly/lib/RegisterPasses.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/RegisterPasses.cpp b/polly/lib/RegisterPasses.cpp index d74e87f20a4..c0ce8577c58 100644 --- a/polly/lib/RegisterPasses.cpp +++ b/polly/lib/RegisterPasses.cpp @@ -74,7 +74,7 @@ enum CodeGenChoice { #ifdef CLOOG_FOUND enum CodeGenChoice DefaultCodeGen = CODEGEN_CLOOG; #else -enum CodegenChoice DefaultCodeGen = CODEGEN_ISL; +enum CodeGenChoice DefaultCodeGen = CODEGEN_ISL; #endif |