[llvm-commits] [polly] r168624 - /polly/trunk/lib/RegisterPasses.cpp
Sebastian Pop
spop at codeaurora.org
Mon Nov 26 14:16:19 PST 2012
Author: spop
Date: Mon Nov 26 16:16:19 2012
New Revision: 168624
URL: http://llvm.org/viewvc/llvm-project?rev=168624&view=rev
Log:
fix typo
Caught while compiling polly without cloog:
../tools/polly/lib/RegisterPasses.cpp:77: error: use of enum 'CodegenChoice' without previous declaration
Modified:
polly/trunk/lib/RegisterPasses.cpp
Modified: polly/trunk/lib/RegisterPasses.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/RegisterPasses.cpp?rev=168624&r1=168623&r2=168624&view=diff
==============================================================================
--- polly/trunk/lib/RegisterPasses.cpp (original)
+++ polly/trunk/lib/RegisterPasses.cpp Mon Nov 26 16:16:19 2012
@@ -74,7 +74,7 @@
#ifdef CLOOG_FOUND
enum CodeGenChoice DefaultCodeGen = CODEGEN_CLOOG;
#else
-enum CodegenChoice DefaultCodeGen = CODEGEN_ISL;
+enum CodeGenChoice DefaultCodeGen = CODEGEN_ISL;
#endif
More information about the llvm-commits
mailing list