You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: not llc < %s -march=nvptx -mcpu=sm_20 2>&1 | FileCheck %s
|
|
|
|
; Check that llc dies gracefully when given an alias.
|
|
|
|
define i32 @a() { ret i32 0 }
|
|
; CHECK: ERROR: Module has aliases
|
|
@b = internal alias i32 (), i32 ()* @a
|