summaryrefslogtreecommitdiff
path: root/test/Analysis
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-08-29 00:37:46 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-08-29 00:37:46 +0000
commitc3c237d8beefe332c6c589638acb6b5b29179387 (patch)
tree2abd22037c12f5e8234696cdef849f74fd44e53d /test/Analysis
parentf05da8ebd65daefb568c854b592cb7a0a7d3a9c9 (diff)
downloadllvm-c3c237d8beefe332c6c589638acb6b5b29179387.tar.gz
llvm-c3c237d8beefe332c6c589638acb6b5b29179387.tar.bz2
llvm-c3c237d8beefe332c6c589638acb6b5b29179387.tar.xz
llvm/test/Analysis/Profiling: Mark 3 of them as REQUIRES: loadable_module.
FIXME: profile_rt.dll could be built on win32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r--test/Analysis/Profiling/load-branch-weights-ifs.ll3
-rw-r--r--test/Analysis/Profiling/load-branch-weights-loops.ll3
-rw-r--r--test/Analysis/Profiling/load-branch-weights-switches.ll3
3 files changed, 9 insertions, 0 deletions
diff --git a/test/Analysis/Profiling/load-branch-weights-ifs.ll b/test/Analysis/Profiling/load-branch-weights-ifs.ll
index b5ee2f3466..ddbaf96916 100644
--- a/test/Analysis/Profiling/load-branch-weights-ifs.ll
+++ b/test/Analysis/Profiling/load-branch-weights-ifs.ll
@@ -6,6 +6,9 @@
; RUN: | FileCheck %s
; RUN: rm -f %t1.prof_data
+; FIXME: profile_rt.dll could be built on win32.
+; REQUIRES: loadable_module
+
;; func_mod - Branch taken 6 times in 7.
define i32 @func_mod(i32 %N) nounwind uwtable {
entry:
diff --git a/test/Analysis/Profiling/load-branch-weights-loops.ll b/test/Analysis/Profiling/load-branch-weights-loops.ll
index 26c89b7c9b..476f377b47 100644
--- a/test/Analysis/Profiling/load-branch-weights-loops.ll
+++ b/test/Analysis/Profiling/load-branch-weights-loops.ll
@@ -6,6 +6,9 @@
; RUN: | FileCheck %s
; RUN: rm -f %t1.prof_data
+; FIXME: profile_rt.dll could be built on win32.
+; REQUIRES: loadable_module
+
;; func_for - Test branch probabilities for a vanilla for loop.
define i32 @func_for(i32 %N) nounwind uwtable {
entry:
diff --git a/test/Analysis/Profiling/load-branch-weights-switches.ll b/test/Analysis/Profiling/load-branch-weights-switches.ll
index 9efe6d0fe4..be11f040a7 100644
--- a/test/Analysis/Profiling/load-branch-weights-switches.ll
+++ b/test/Analysis/Profiling/load-branch-weights-switches.ll
@@ -6,6 +6,9 @@
; RUN: | FileCheck %s
; RUN: rm -f %t1.prof_data
+; FIXME: profile_rt.dll could be built on win32.
+; REQUIRES: loadable_module
+
;; func_switch - Test branch probabilities for a switch instruction with an
;; even chance of taking each case (or no case).
define i32 @func_switch(i32 %N) nounwind uwtable {