[llvm] d0b02ae - Address redirect issue on Windows.

via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 16 12:08:14 PST 2020


Author: StevenWanYu
Date: 2020-01-16T15:07:50-05:00
New Revision: d0b02aecacc626d245a0e1ef5fe6276d6d3f9ed4

URL: https://github.com/llvm/llvm-project/commit/d0b02aecacc626d245a0e1ef5fe6276d6d3f9ed4
DIFF: https://github.com/llvm/llvm-project/commit/d0b02aecacc626d245a0e1ef5fe6276d6d3f9ed4.diff

LOG: Address redirect issue on Windows.

Added: 
    

Modified: 
    llvm/test/tools/llc/aix-pic-setting.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/tools/llc/aix-pic-setting.ll b/llvm/test/tools/llc/aix-pic-setting.ll
index 12cbcdddc8eb..61f0895d0c89 100644
--- a/llvm/test/tools/llc/aix-pic-setting.ll
+++ b/llvm/test/tools/llc/aix-pic-setting.ll
@@ -1,7 +1,7 @@
 ; REQUIRES: powerpc-registered-target
-; RUN: llc -mtriple=powerpc-ibm-aix < %s 2>&1 1>/dev/null | FileCheck --allow-empty %s
-; RUN: llc -mtriple=powerpc-ibm-aix --relocation-model=pic < %s 2>&1 1>/dev/null | FileCheck --allow-empty %s
-; RUN: llc -mtriple=powerpc64-ibm-aix --relocation-model=pic < %s 2>&1 1>/dev/null | FileCheck --allow-empty %s
+; RUN: llc -mtriple=powerpc-ibm-aix < %s 2>&1 >/dev/null | FileCheck --allow-empty %s
+; RUN: llc -mtriple=powerpc-ibm-aix --relocation-model=pic < %s 2>&1 >/dev/null | FileCheck --allow-empty %s
+; RUN: llc -mtriple=powerpc64-ibm-aix --relocation-model=pic < %s 2>&1 >/dev/null | FileCheck --allow-empty %s
 ; RUN: not llc -mtriple=powerpc-ibm-aix --relocation-model=static < %s 2>&1 | FileCheck --check-prefix=CHECK-NON-PIC %s
 ; RUN: not llc -mtriple=powerpc64-ibm-aix --relocation-model=ropi-rwpi < %s 2>&1 | FileCheck --check-prefix=CHECK-NON-PIC %s
 


        


More information about the llvm-commits mailing list