[PATCH] D72750: [X86] Insert wait instruction after X87 instructions which could raise float-point exception.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 15 00:08:36 PST 2020
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/X86/X86InsertWait.cpp:25
+#include "X86Subtarget.h"
+#include "llvm/ADT/SmallVector.h"
+#include "llvm/ADT/Statistic.h"
----------------
This is unused
================
Comment at: llvm/lib/Target/X86/X86InsertWait.cpp:26
+#include "llvm/ADT/SmallVector.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/CodeGen/MachineBasicBlock.h"
----------------
This is unused
================
Comment at: llvm/lib/Target/X86/X86InsertWait.cpp:40
+#include "llvm/Support/ErrorHandling.h"
+#include "llvm/Support/raw_ostream.h"
+#include <cassert>
----------------
This is unused. Those were just the obvious ones. Please prune to just what's necessary.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D72750/new/
https://reviews.llvm.org/D72750
More information about the llvm-commits
mailing list