blob: 6dec8a2e8e24a21417e7f4adb90b9d4ce0be5399 [file] [edit]
// REQUIRES: x86-registered-target
// RUN: %clang_cc1 -triple=x86_64-unkown-linux-gnu -fenable-new-pm-codegen=force-on -S -o - %s | FileCheck %s
int foo() {
// CHECK-LABEL: foo
// CHECK: xorl
// CHECK: retq
return 0;
}