[llvm] r247757 - llvm/CodeGen/CommandFlags.h: Prune doubleslash in #include.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 15 17:10:43 PDT 2015


Author: chapuni
Date: Tue Sep 15 19:10:43 2015
New Revision: 247757

URL: http://llvm.org/viewvc/llvm-project?rev=247757&view=rev
Log:
llvm/CodeGen/CommandFlags.h: Prune doubleslash in #include.

While packaging 3.7 for Fedora, the debug info splitting
process fell over this, so fix it upstream seems like a good plan.

This should be put in the 3.7 branch as well.

Noticed by Dave Airlie <airlied at redhat.com>

Modified:
    llvm/trunk/include/llvm/CodeGen/CommandFlags.h

Modified: llvm/trunk/include/llvm/CodeGen/CommandFlags.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/CommandFlags.h?rev=247757&r1=247756&r2=247757&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/CommandFlags.h (original)
+++ llvm/trunk/include/llvm/CodeGen/CommandFlags.h Tue Sep 15 19:10:43 2015
@@ -21,7 +21,7 @@
 #include "llvm/IR/Intrinsics.h"
 #include "llvm/IR/Module.h"
 #include "llvm/MC/MCTargetOptionsCommandFlags.h"
-#include "llvm//MC/SubtargetFeature.h"
+#include "llvm/MC/SubtargetFeature.h"
 #include "llvm/Support/CodeGen.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/Host.h"




More information about the llvm-commits mailing list