test/CodeGen/Generic/asm-large-immediate.ll: Mark it as XFAIL: powerpc, possibly due to r158939.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158994 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-06-22 13:41:00 +00:00
parent 9cfc799171
commit 84f64f317f

View File

@ -1,5 +1,8 @@
; RUN: llc < %s | FileCheck %s
; FIXME: Seek around r158932 to r158946.
; XFAIL: powerpc
define void @test() {
entry:
; CHECK: /* result: 68719476738 */
@ -8,4 +11,3 @@ entry:
tail call void asm sideeffect "/* result: ${0:n} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
ret void
}