[PATCH] D51976: [DebugInfo][Dexter] Speculated BB presents illegal variable value to debugger

Carlos Alberto Enciso via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 18 01:24:55 PDT 2018


CarlosAlbertoEnciso marked an inline comment as done.
CarlosAlbertoEnciso added inline comments.


================
Comment at: test/CodeGen/X86/pr38763.ll:1
+; RUN: opt %s -S -simplifycfg | FileCheck %s
+
----------------
vsk wrote:
> Do you need to pipe in the input ('< %s') here? I assumed that opt would write its output to %s.ll otherwise.
The pipe is not required. opt write its output to the standard output.
I had look at the test cases that use 'opt' and there are 2 ways to invoke it:

(1) RUN: opt <options> < %s

and

(2) RUN: opt <options> %s

The most common format is (1). Changing to use that format.



https://reviews.llvm.org/D51976





More information about the llvm-commits mailing list