summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2012-12-20 20:18:12 +0000
committerTobias Grosser <grosser@fim.uni-passau.de>2012-12-20 20:18:12 +0000
commit339bbccf52dfac285217d4cc3908b2e811a7eb83 (patch)
tree5a7695e796290910bb176c64ea9f930e923d71cb
parent8efde361c3fd7e55df2ee3b3e0fa243d64ea24df (diff)
downloadllvm-339bbccf52dfac285217d4cc3908b2e811a7eb83.tar.gz
fix typo
Caught while compiling polly without cloog: ../tools/polly/lib/RegisterPasses.cpp:77: error: use of enum 'CodegenChoice' without previous declaration Merged from: https://llvm.org/svn/llvm-project/polly/trunk@168624 llvm-svn: 170737
-rw-r--r--polly/lib/RegisterPasses.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/RegisterPasses.cpp b/polly/lib/RegisterPasses.cpp
index d74e87f20a41..c0ce8577c583 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