XFAIL the test cases for r186044 on Hexagon
[oota-llvm.git] / lib / Bitcode / Writer / BitcodeWriterPass.cpp
index 3a0d3ce0be994066dbf8e834cd2d52e9df834349..e5e76e29bd2d0abb2c9ccc2e10737281cccac294 100644 (file)
@@ -21,10 +21,10 @@ namespace {
   public:
     static char ID; // Pass identification, replacement for typeid
     explicit WriteBitcodePass(raw_ostream &o)
-      : ModulePass(&ID), OS(o) {}
-    
+      : ModulePass(ID), OS(o) {}
+
     const char *getPassName() const { return "Bitcode Writer"; }
-    
+
     bool runOnModule(Module &M) {
       WriteBitcodeToFile(&M, OS);
       return false;