summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorQuentin Colombet <qcolombet@apple.com>2014-04-11 21:51:09 +0000
committerQuentin Colombet <qcolombet@apple.com>2014-04-11 21:51:09 +0000
commit010311b1044feb1ab04c5a5eafbf1fba02548d08 (patch)
tree79d35a9b41e62fa0b2e1293dbcde427668efda2d /test
parent92a892e8f94533402b804d75080f9eec7da1e27b (diff)
downloadllvm-010311b1044feb1ab04c5a5eafbf1fba02548d08.tar.gz
llvm-010311b1044feb1ab04c5a5eafbf1fba02548d08.tar.bz2
llvm-010311b1044feb1ab04c5a5eafbf1fba02548d08.tar.xz
[RegAllocGreedy][Last Chance Recoloring] Change the name of the exhaustive search option.
fexhaustive-register-search => exhaustive-register-search 'f' is a Clang thing! This is related to PR18747. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/ragreedy-last-chance-recoloring.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/ragreedy-last-chance-recoloring.ll b/test/CodeGen/X86/ragreedy-last-chance-recoloring.ll
index e21e2dd5df..d8e45727b9 100644
--- a/test/CodeGen/X86/ragreedy-last-chance-recoloring.ll
+++ b/test/CodeGen/X86/ragreedy-last-chance-recoloring.ll
@@ -8,9 +8,9 @@
; RUN: not llc -regalloc=greedy -relocation-model=pic -lcr-max-interf=1 < %s 2>&1 | FileCheck %s --check-prefix=CHECK-INTERF
; Test whether failure due to cutoff for interference is reported
-; RUN: llc -regalloc=greedy -relocation-model=pic -lcr-max-interf=1 -lcr-max-depth=0 -fexhaustive-register-search < %s > %t 2>&1
+; RUN: llc -regalloc=greedy -relocation-model=pic -lcr-max-interf=1 -lcr-max-depth=0 -exhaustive-register-search < %s > %t 2>&1
; RUN: FileCheck --input-file=%t %s --check-prefix=CHECK-EXHAUSTIVE
-; Test whether fexhaustive-register-search can bypass the depth and interference cutoffs of last chance recoloring
+; Test whether exhaustive-register-search can bypass the depth and interference cutoffs of last chance recoloring
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32-S128"
target triple = "i386-apple-macosx"