Chromium Code Reviews| Index: src/IceCompiler.cpp |
| diff --git a/src/IceCompiler.cpp b/src/IceCompiler.cpp |
| index 7c8b791969e63feafdac29b17421876e2640befc..256a844b28cabb4662b523f7d9b3ff0239738e85 100644 |
| --- a/src/IceCompiler.cpp |
| +++ b/src/IceCompiler.cpp |
| @@ -48,9 +48,6 @@ struct { |
| // Stream is non-null. |
| void ValidateAndGenerateBuildAttributes(const ClFlags &Flags, Ostream *Stream) { |
| if (Stream) { |
| - // List the requested target. |
| - *Stream << Flags.getTargetArch() << "\n"; |
| - |
| // List the supported targets. |
|
Jim Stichnoth
2015/05/15 23:21:50
This comment's indentation is weird (but was also
jvoung (off chromium)
2015/05/15 23:50:30
Hmm, clang-format seems to force the comment to st
Jim Stichnoth
2015/05/15 23:52:06
No problem either way, just want to avoid the "nex
|
| #define SUBZERO_TARGET(TARGET) *Stream << "target_" #TARGET << "\n"; |
| #include "llvm/Config/SZTargets.def" |