Home | History | Annotate | Download | only in X86
      1 ; RUN: not llc < %s 2>&1 | FileCheck %s
      2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
      3 target triple = "x86_64-unknown-linux-gnu"
      4 
      5 module asm ".equiv pselect, __pselect"
      6 
      7 define void @pselect() {
      8   ret void
      9 }
     10 ; CHECK: 'pselect' is a protected alias
     11