diff options
author | Justin Hibbits <jrh29@alumni.cwru.edu> | 2014-11-12 16:40:00 +0000 |
---|---|---|
committer | Justin Hibbits <jrh29@alumni.cwru.edu> | 2014-11-12 16:40:00 +0000 |
commit | b296c9735ee2603c59d45599bb42b557ebf8c65d (patch) | |
tree | cfffeb5addbff93f5e91e5336142388011981acc | |
parent | a88b605721a602e473c6072b6d2bf20aec02b0c7 (diff) | |
download | bcm5719-llvm-b296c9735ee2603c59d45599bb42b557ebf8c65d.tar.gz bcm5719-llvm-b296c9735ee2603c59d45599bb42b557ebf8c65d.zip |
Fix thet tests.
I seem to have missed the update I made for changing 'flag_pic' to "PIC Level".
Mea culpa.
llvm-svn: 221792
-rw-r--r-- | llvm/test/CodeGen/PowerPC/ppc32-pic-large.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/PowerPC/ppc32-pic.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/PowerPC/ppc32-pic-large.ll b/llvm/test/CodeGen/PowerPC/ppc32-pic-large.ll index 9512f7e1aca..ecc4f103096 100644 --- a/llvm/test/CodeGen/PowerPC/ppc32-pic-large.ll +++ b/llvm/test/CodeGen/PowerPC/ppc32-pic-large.ll @@ -8,7 +8,7 @@ entry: } !llvm.module.flags = !{!0} -!0 = metadata !{i32 1, metadata !"flag_pic", i32 2} +!0 = metadata !{i32 1, metadata !"PIC Level", i32 2} ; LARGE-BSS: [[POFF:\.L[0-9]+\$poff]]: ; LARGE-BSS-NEXT: .long .LTOC-[[PB:\.L[0-9]+\$pb]] ; LARGE-BSS-NEXT: foo: diff --git a/llvm/test/CodeGen/PowerPC/ppc32-pic.ll b/llvm/test/CodeGen/PowerPC/ppc32-pic.ll index 1ce56c506ad..f9c34679213 100644 --- a/llvm/test/CodeGen/PowerPC/ppc32-pic.ll +++ b/llvm/test/CodeGen/PowerPC/ppc32-pic.ll @@ -8,7 +8,7 @@ entry: } !llvm.module.flags = !{!0} -!0 = metadata !{i32 1, metadata !"flag_pic", i32 1} +!0 = metadata !{i32 1, metadata !"PIC Level", i32 1} ; SMALL-BSS-LABEL:foo: ; SMALL-BSS: bl _GLOBAL_OFFSET_TABLE_@local-4 ; SMALL-BSS: mflr 30 |