Commit 339bbccf authored by Tobias Grosser's avatar Tobias Grosser
Browse files

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
parent 8efde361
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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